From dba5eeaa0dcda2f49545a4f1f3d05cc9c31c137d Mon Sep 17 00:00:00 2001 From: miarne3947 Date: Tue, 3 Oct 2023 14:52:55 -0700 Subject: [PATCH] Completed Assignment001 for CIS-12 Fall2023 --- src/AlanTuring.java | 12 +++++++++++- src/InAGalaxyFarFarAway.java | 13 +++++++++++++ src/JurassicPark.java | 14 ++++++++++++++ 3 files changed, 38 insertions(+), 1 deletion(-) diff --git a/src/AlanTuring.java b/src/AlanTuring.java index 536a0a0..5315d7d 100644 --- a/src/AlanTuring.java +++ b/src/AlanTuring.java @@ -1,3 +1,12 @@ +/** + * + * @author Trevor Hartman + * @author Miranda Arnett + * + * @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..4ce6c01 100644 --- a/src/InAGalaxyFarFarAway.java +++ b/src/InAGalaxyFarFarAway.java @@ -1,3 +1,13 @@ +/** + * + * @author Trevor Hartman + * @author Miranda Arnett + * + * @since Version 1.0 + * + */ + + public class InAGalaxyFarFarAway { /** * Prints a famous Star Wars intro to the console with 3 souts. @@ -5,5 +15,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..456381e 100644 --- a/src/JurassicPark.java +++ b/src/JurassicPark.java @@ -1,3 +1,12 @@ +/** + * + * @author Trevor Hartman + * @author Miranda Arnett + * + * @since Version 1.0 + * + */ + public class JurassicPark { /** * Prints famous Jurasic Park quote to console with only 1 sout statement. @@ -5,5 +14,10 @@ public class JurassicPark { **/ public static void main(String[] args) { // Write your program here + System.out.println(""" +"Life, uh, +finds a way." +—Ian Malcolm +"""); } }