From db305ec60ba7b5918bf4fd2789c5a13fd72dcfb6 Mon Sep 17 00:00:00 2001 From: agarcia923 Date: Thu, 31 Aug 2023 11:32:47 -0700 Subject: [PATCH] Finished assignment 1! --- .idea/misc.xml | 2 +- src/AlanTuring.java | 12 ++++++++++-- src/InAGalaxyFarFarAway.java | 14 ++++++++++++-- src/JurassicPark.java | 13 ++++++++++++- 4 files changed, 35 insertions(+), 6 deletions(-) diff --git a/.idea/misc.xml b/.idea/misc.xml index 07115cd..5ad49fe 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..ae3fc5a 100644 --- a/src/AlanTuring.java +++ b/src/AlanTuring.java @@ -1,3 +1,11 @@ +/** + * + * @author Trevor Hartman + * @author + * + * @since Version 1.0 + * + */ public class AlanTuring { /** * Prints Alan Turing to the console @@ -5,5 +13,5 @@ public class AlanTuring { **/ public static void main(String[] args) { // Write your program here - } -} \ No newline at end of file + System.out.println("Alan Turning");} +}// all done with assignment \ No newline at end of file diff --git a/src/InAGalaxyFarFarAway.java b/src/InAGalaxyFarFarAway.java index ac6c6a6..97554d4 100644 --- a/src/InAGalaxyFarFarAway.java +++ b/src/InAGalaxyFarFarAway.java @@ -1,3 +1,11 @@ +/** + * + * @author Trevor Hartman + * @author + * + * @since Version 1.0 + * + */ public class InAGalaxyFarFarAway { /** * Prints a famous Star Wars intro to the console with 3 souts. @@ -5,5 +13,7 @@ public class InAGalaxyFarFarAway { **/ public static void main(String[] args) { // Write your program here - } -} \ No newline at end of file + System.out.println("a long time ago"); + System.out.println("in a galaxy far,"); + System.out.println("far away...");} +}// all done \ No newline at end of file diff --git a/src/JurassicPark.java b/src/JurassicPark.java index c7951fa..37455e9 100644 --- a/src/JurassicPark.java +++ b/src/JurassicPark.java @@ -1,3 +1,11 @@ +/** + * + * @author Trevor Hartman + * @author + * + * @since Version 1.0 + * + */ public class JurassicPark { /** * Prints famous Jurasic Park quote to console with only 1 sout statement. @@ -5,5 +13,8 @@ public class JurassicPark { **/ public static void main(String[] args) { // Write your program here - } + System.out.println("\"Life, uh,\n" + + "finds a way.\"\n" + + "Ian Malcolm"); } } +// done \ No newline at end of file