From 45cf6a614c40867c3aaccf8b8aae8a05fdbd9cbe Mon Sep 17 00:00:00 2001 From: Matthew Miller Date: Sat, 26 Aug 2023 22:30:28 -0700 Subject: [PATCH 1/2] Succesfully printed. --- .idea/misc.xml | 1 - src/AlanTuring.java | 14 ++++++++++++-- src/InAGalaxyFarFarAway.java | 12 ++++++++++++ src/JurassicPark.java | 12 ++++++++++++ 4 files changed, 36 insertions(+), 3 deletions(-) diff --git a/.idea/misc.xml b/.idea/misc.xml index 07115cd..ef89d98 100644 --- a/.idea/misc.xml +++ b/.idea/misc.xml @@ -1,4 +1,3 @@ - diff --git a/src/AlanTuring.java b/src/AlanTuring.java index 536a0a0..95bc88b 100644 --- a/src/AlanTuring.java +++ b/src/AlanTuring.java @@ -5,5 +5,15 @@ public class AlanTuring { **/ public static void main(String[] args) { // Write your program here - } -} \ No newline at end of file +/** + * + * @author Trevor Hartman + * @author Matthew Miller + * + * @since Version 1.0 + * + */ + + System.out.println("Alan Turing"); + } + } \ No newline at end of file diff --git a/src/InAGalaxyFarFarAway.java b/src/InAGalaxyFarFarAway.java index ac6c6a6..3c593ff 100644 --- a/src/InAGalaxyFarFarAway.java +++ b/src/InAGalaxyFarFarAway.java @@ -5,5 +5,17 @@ public class InAGalaxyFarFarAway { **/ public static void main(String[] args) { // Write your program here + /** + * + * @author Trevor Hartman + * @author Matthew Miller + * + * @since Version 1.0 + * + */ + + 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..b1128fc 100644 --- a/src/JurassicPark.java +++ b/src/JurassicPark.java @@ -1,3 +1,4 @@ + public class JurassicPark { /** * Prints famous Jurasic Park quote to console with only 1 sout statement. @@ -5,5 +6,16 @@ public class JurassicPark { **/ public static void main(String[] args) { // Write your program here + /** + * + * @author Trevor Hartman + * @author Matthew Miller + * + * @since Version 1.0 + * + */ + + String Ian = "\"Life, uh,\nfinds a way.\n—Ian Malcolm\""; + System.out.println(Ian); } } From c6eaaa5e99fc180a498953cec8696b04173ea7aa Mon Sep 17 00:00:00 2001 From: Matthew Miller Date: Sat, 26 Aug 2023 22:31:44 -0700 Subject: [PATCH 2/2] Succesfully printed. --- src/AlanTuring.java | 3 +-- src/InAGalaxyFarFarAway.java | 1 - src/JurassicPark.java | 1 - 3 files changed, 1 insertion(+), 4 deletions(-) diff --git a/src/AlanTuring.java b/src/AlanTuring.java index 95bc88b..3374b72 100644 --- a/src/AlanTuring.java +++ b/src/AlanTuring.java @@ -13,7 +13,6 @@ public static void main(String[] args) { * @since Version 1.0 * */ - - System.out.println("Alan Turing"); +System.out.println("Alan Turing"); } } \ No newline at end of file diff --git a/src/InAGalaxyFarFarAway.java b/src/InAGalaxyFarFarAway.java index 3c593ff..9c54520 100644 --- a/src/InAGalaxyFarFarAway.java +++ b/src/InAGalaxyFarFarAway.java @@ -13,7 +13,6 @@ public static void main(String[] args) { * @since Version 1.0 * */ - System.out.println("A long time ago"); System.out.println("in a galaxy far,"); System.out.println("far away...."); diff --git a/src/JurassicPark.java b/src/JurassicPark.java index b1128fc..10c2410 100644 --- a/src/JurassicPark.java +++ b/src/JurassicPark.java @@ -14,7 +14,6 @@ public static void main(String[] args) { * @since Version 1.0 * */ - String Ian = "\"Life, uh,\nfinds a way.\n—Ian Malcolm\""; System.out.println(Ian); }