From 70c8bb84258e0dd8d95ecb569abb8bf031ea4949 Mon Sep 17 00:00:00 2001 From: aprice539 Date: Wed, 13 Sep 2023 14:09:42 -0700 Subject: [PATCH 1/2] done done --- src/AlanTuring.java | 2 ++ src/InAGalaxyFarFarAway.java | 3 ++- src/JurassicPark.java | 9 ++++++--- 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/src/AlanTuring.java b/src/AlanTuring.java index 536a0a0..f54b6ee 100644 --- a/src/AlanTuring.java +++ b/src/AlanTuring.java @@ -1,3 +1,4 @@ +/*Javadoc*/ public class AlanTuring { /** * Prints Alan Turing to the console @@ -5,5 +6,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..192c726 100644 --- a/src/InAGalaxyFarFarAway.java +++ b/src/InAGalaxyFarFarAway.java @@ -1,9 +1,10 @@ +/*Javadoc*/ public class InAGalaxyFarFarAway { /** * Prints a famous Star Wars intro to the console with 3 souts. * @param args Command line arguments [The source file path, The target file path, ...] **/ 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..c71b00e 100644 --- a/src/JurassicPark.java +++ b/src/JurassicPark.java @@ -1,9 +1,12 @@ -public class JurassicPark { +/*Javadoc*/ +ublic class JurassicPark { /** * Prints famous Jurasic Park quote to console with only 1 sout statement. * @param args Command line arguments [The source file path, The target file path, ...] **/ public static void main(String[] args) { - // Write your program here - } + System.out.println(""" + "Life, uh, + finds a way." + —Ian Malcolm"""); } } From f32b034d726cd26d1705adbe7757f8a2a63d0843 Mon Sep 17 00:00:00 2001 From: aprice539 Date: Wed, 13 Sep 2023 14:12:09 -0700 Subject: [PATCH 2/2] done done done --- src/JurassicPark.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/JurassicPark.java b/src/JurassicPark.java index c71b00e..4b71d9e 100644 --- a/src/JurassicPark.java +++ b/src/JurassicPark.java @@ -1,5 +1,5 @@ /*Javadoc*/ -ublic class JurassicPark { +public class JurassicPark { /** * Prints famous Jurasic Park quote to console with only 1 sout statement. * @param args Command line arguments [The source file path, The target file path, ...]