From d568bc59e3d66294ef9aae5979960227b2cea613 Mon Sep 17 00:00:00 2001 From: Rayman4009 Date: Sun, 27 Aug 2023 13:24:13 -0700 Subject: [PATCH 1/3] Prints Alen Turing --- .idea/misc.xml | 2 +- src/AlanTuring.java | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.idea/misc.xml b/.idea/misc.xml index 07115cd..501ce09 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..b69a2c5 100644 --- a/src/AlanTuring.java +++ b/src/AlanTuring.java @@ -5,5 +5,6 @@ public class AlanTuring { **/ public static void main(String[] args) { // Write your program here + System.out.println("Alen Turing"); } } \ No newline at end of file From 36a37b2733bfee1ba649dac33f74d34afdbbea40 Mon Sep 17 00:00:00 2001 From: Rayman4009 Date: Sun, 27 Aug 2023 13:42:40 -0700 Subject: [PATCH 2/3] Prints Star wars quote --- src/InAGalaxyFarFarAway.java | 3 +++ src/JurassicPark.java | 8 ++++++++ 2 files changed, 11 insertions(+) diff --git a/src/InAGalaxyFarFarAway.java b/src/InAGalaxyFarFarAway.java index ac6c6a6..0b90bd3 100644 --- a/src/InAGalaxyFarFarAway.java +++ b/src/InAGalaxyFarFarAway.java @@ -5,5 +5,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.print("far away...."); } } \ No newline at end of file diff --git a/src/JurassicPark.java b/src/JurassicPark.java index c7951fa..1503786 100644 --- a/src/JurassicPark.java +++ b/src/JurassicPark.java @@ -3,7 +3,15 @@ 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, ...] **/ + static String Jurassic(){ + return """ + "Life, uh, + finds a way." + —Ian Malcolm + """; + } public static void main(String[] args) { // Write your program here + System.out.println(Jurassic()); } } From 2d0387e36a16ea2577566af1c6c0712a2f9cc5db Mon Sep 17 00:00:00 2001 From: Rayman4009 Date: Sun, 27 Aug 2023 13:48:37 -0700 Subject: [PATCH 3/3] Prints Assignment 1 --- src/AlanTuring.java | 8 ++++++++ src/InAGalaxyFarFarAway.java | 8 ++++++++ src/JurassicPark.java | 8 ++++++++ 3 files changed, 24 insertions(+) diff --git a/src/AlanTuring.java b/src/AlanTuring.java index b69a2c5..2d17bf1 100644 --- a/src/AlanTuring.java +++ b/src/AlanTuring.java @@ -1,3 +1,11 @@ +/** + * + * @author Trevor Hartman + * @author Tucker Avenmarg + * + * @since Version 1.0 + * + */ public class AlanTuring { /** * Prints Alan Turing to the console diff --git a/src/InAGalaxyFarFarAway.java b/src/InAGalaxyFarFarAway.java index 0b90bd3..419cb20 100644 --- a/src/InAGalaxyFarFarAway.java +++ b/src/InAGalaxyFarFarAway.java @@ -1,3 +1,11 @@ +/** + * + * @author Trevor Hartman + * @author Tucker Avenmarg + * + * @since Version 1.0 + * + */ public class InAGalaxyFarFarAway { /** * Prints a famous Star Wars intro to the console with 3 souts. diff --git a/src/JurassicPark.java b/src/JurassicPark.java index 1503786..1d8ce25 100644 --- a/src/JurassicPark.java +++ b/src/JurassicPark.java @@ -1,3 +1,11 @@ +/** + * + * @author Trevor Hartman + * @author Tucker Avenmarg + * + * @since Version 1.0 + * + */ public class JurassicPark { /** * Prints famous Jurasic Park quote to console with only 1 sout statement.