From b7730e19043c67fb69e0b122d3d6793b08c3344c Mon Sep 17 00:00:00 2001 From: MJFracess Date: Fri, 15 Sep 2023 19:37:42 -0700 Subject: [PATCH] MJ Fracess CIS 12 Assignment 001 --- .idea/misc.xml | 2 +- src/AlanTuring.java | 8 +++++++- src/InAGalaxyFarFarAway.java | 8 +++++++- src/JurassicPark.java | 7 ++++++- 4 files changed, 21 insertions(+), 4 deletions(-) diff --git a/.idea/misc.xml b/.idea/misc.xml index 07115cd..cf9abe6 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..8cad8f4 100644 --- a/src/AlanTuring.java +++ b/src/AlanTuring.java @@ -1,9 +1,15 @@ public class AlanTuring { /** + * @author Trevor Hartman + * @author MJ Fracess + * + * @since Version 1.0 + * * 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 + //Here goes nothing + System.out.println("Alan Turing"); } } \ No newline at end of file diff --git a/src/InAGalaxyFarFarAway.java b/src/InAGalaxyFarFarAway.java index ac6c6a6..26b62c4 100644 --- a/src/InAGalaxyFarFarAway.java +++ b/src/InAGalaxyFarFarAway.java @@ -1,9 +1,15 @@ public class InAGalaxyFarFarAway { /** + * @author Trevor Hartman + * @author MJ Fracess + * + * @since Version 1.0 + * * 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 + //I think I am starting to pick up what you are putting down + 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..292d48f 100644 --- a/src/JurassicPark.java +++ b/src/JurassicPark.java @@ -1,9 +1,14 @@ public class JurassicPark { /** + * @author Trevor Hartman + * @author MJ Fracess + * + * @since Version 1.0 + * * 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.print("\"Life, uh,\nfinds a way.\"\n-Ian Malcolm" ); } }