From 1f6bcd68e9bc0bf136eace47ebd474191e5ec617 Mon Sep 17 00:00:00 2001 From: Ethan Jauernig Lab 1 Date: Sat, 26 Aug 2023 21:19:20 -0700 Subject: [PATCH] Ethan J Assignment 1 --- .idea/misc.xml | 2 +- src/AlanTuring.java | 10 ++++++++++ src/InAGalaxyFarFarAway.java | 12 ++++++++++++ src/JurassicPark.java | 13 +++++++++++++ 4 files changed, 36 insertions(+), 1 deletion(-) diff --git a/.idea/misc.xml b/.idea/misc.xml index 07115cd..ca592ec 100644 --- a/.idea/misc.xml +++ b/.idea/misc.xml @@ -1,6 +1,6 @@ - + \ No newline at end of file diff --git a/src/AlanTuring.java b/src/AlanTuring.java index 536a0a0..7181d33 100644 --- a/src/AlanTuring.java +++ b/src/AlanTuring.java @@ -1,3 +1,12 @@ +/** + * + * @author Trevor Hartman + * @author Ethan Jauernig + * + * @since Version 1.0 + * + */ + public class AlanTuring { /** * Prints Alan Turing to the console @@ -5,5 +14,6 @@ public class AlanTuring { **/ public static void main(String[] args) { // Write your program here + System.out.println("Alan Turing"); } } \ No newline at end of file diff --git a/src/InAGalaxyFarFarAway.java b/src/InAGalaxyFarFarAway.java index ac6c6a6..cd2e2eb 100644 --- a/src/InAGalaxyFarFarAway.java +++ b/src/InAGalaxyFarFarAway.java @@ -1,3 +1,12 @@ +/** + * + * @author Trevor Hartman + * @author Ethan Jauernig + * + * @since Version 1.0 + * + */ + public class InAGalaxyFarFarAway { /** * Prints a famous Star Wars intro to the console with 3 souts. @@ -5,5 +14,8 @@ public class InAGalaxyFarFarAway { **/ public static void main(String[] args) { // Write your program here + System.out.println("A long time ago"); + System.out.println("in a galaxy far,"); + System.out.println("far away...."); } } \ No newline at end of file diff --git a/src/JurassicPark.java b/src/JurassicPark.java index c7951fa..c7beb0b 100644 --- a/src/JurassicPark.java +++ b/src/JurassicPark.java @@ -1,3 +1,12 @@ +/** + * + * @author Trevor Hartman + * @author Ethan Jauernig + * + * @since Version 1.0 + * + */ + public class JurassicPark { /** * Prints famous Jurasic Park quote to console with only 1 sout statement. @@ -5,5 +14,9 @@ public class JurassicPark { **/ public static void main(String[] args) { // Write your program here + System.out.println(""" + Life, uh, + finds a way. + -Ian Malcom"""); } }