From 13676fbca4441f57e87060f6c3b6fa4fe292e4e0 Mon Sep 17 00:00:00 2001 From: Daniel Faulkner Date: Sat, 26 Aug 2023 21:46:11 -0700 Subject: [PATCH] finished assignment 001 --- .idea/misc.xml | 1 - src/AlanTuring.java | 10 +++++++++- src/InAGalaxyFarFarAway.java | 12 +++++++++++- src/JurassicPark.java | 11 ++++++++++- 4 files changed, 30 insertions(+), 4 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..db01bef 100644 --- a/src/AlanTuring.java +++ b/src/AlanTuring.java @@ -1,9 +1,17 @@ +/** + * + * @author Trevor Hartman + * @author Daniel Faulkner + * + * @since Version 1.0 + * + */ public class AlanTuring { /** * Prints Alan Turing to the console * @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("Alan Turing"); } } \ No newline at end of file diff --git a/src/InAGalaxyFarFarAway.java b/src/InAGalaxyFarFarAway.java index ac6c6a6..a41e6e8 100644 --- a/src/InAGalaxyFarFarAway.java +++ b/src/InAGalaxyFarFarAway.java @@ -1,9 +1,19 @@ +/** + * + * @author Trevor Hartman + * @author Daniel Faulkner + * + * @since Version 1.0 + * + */ 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..8c85e02 100644 --- a/src/JurassicPark.java +++ b/src/JurassicPark.java @@ -1,9 +1,18 @@ +/** + * + * @author Trevor Hartman + * @author Daniel Faulkner + * + * @since Version 1.0 + * + */ 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, ...] **/ public static void main(String[] args) { - // Write your program here + System.out.println("\"Life, uh, \n" + "finds a way.\"\n" + "-Ian Malcolm"); + } }