commit 2411b5d4a4740d2fb351d35e10c3afb41c99863f Author: Caleb Fontenot Date: Thu Aug 25 16:05:45 2022 -0500 Init diff --git a/Lab1/pom.xml b/Lab1/pom.xml new file mode 100644 index 0000000..a05520f --- /dev/null +++ b/Lab1/pom.xml @@ -0,0 +1,14 @@ + + + 4.0.0 + com.calebfontenot.lab1 + Lab1 + 1.0-SNAPSHOT + jar + + UTF-8 + 1.8 + 1.8 + com.calebfontenot.lab1.Lab1 + + \ No newline at end of file diff --git a/Lab1/src/main/java/com/calebfontenot/lab1/Lab1.java b/Lab1/src/main/java/com/calebfontenot/lab1/Lab1.java new file mode 100644 index 0000000..421f663 --- /dev/null +++ b/Lab1/src/main/java/com/calebfontenot/lab1/Lab1.java @@ -0,0 +1,18 @@ +/* + * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license + * Click nbfs://nbhost/SystemFileSystem/Templates/Project/Maven2/JavaApp/src/main/java/${packagePath}/${mainClassName}.java to edit this template + */ + +package com.calebfontenot.lab1; + +/** + * + * @author caleb + */ +public class Lab1 { + + public static void main(String[] args) { + String message = "Hello World"; + System.out.println(message); + } +} diff --git a/Lab1CalebFontenot/pom.xml b/Lab1CalebFontenot/pom.xml new file mode 100644 index 0000000..05d91b2 --- /dev/null +++ b/Lab1CalebFontenot/pom.xml @@ -0,0 +1,14 @@ + + + 4.0.0 + com.calebfontenot.lab1calebfontenot + Lab1CalebFontenot + 1.0-SNAPSHOT + jar + + UTF-8 + 1.8 + 1.8 + com.calebfontenot.lab1calebfontenot.Lab1CalebFontenot + + \ No newline at end of file diff --git a/Lab1CalebFontenot/src/main/java/ShowLogicErrors.java b/Lab1CalebFontenot/src/main/java/ShowLogicErrors.java new file mode 100644 index 0000000..961c9c4 --- /dev/null +++ b/Lab1CalebFontenot/src/main/java/ShowLogicErrors.java @@ -0,0 +1,15 @@ +/* + * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license + * Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template + */ + +/** + * + * @author caleb + */ +public class ShowLogicErrors { + public static void main(String[] args) { + System.out.println("Celsius 35 is Fahrenheit degree "); + System.out.println((9 / 5) * 35 + 32); + } +} diff --git a/Lab1CalebFontenot/src/main/java/com/calebfontenot/lab1calebfontenot/Lab1CalebFontenot.java b/Lab1CalebFontenot/src/main/java/com/calebfontenot/lab1calebfontenot/Lab1CalebFontenot.java new file mode 100644 index 0000000..6b09147 --- /dev/null +++ b/Lab1CalebFontenot/src/main/java/com/calebfontenot/lab1calebfontenot/Lab1CalebFontenot.java @@ -0,0 +1,20 @@ +/* + * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license + * Click nbfs://nbhost/SystemFileSystem/Templates/Project/Maven2/JavaApp/src/main/java/${packagePath}/${mainClassName}.java to edit this template + */ +package com.calebfontenot.lab1calebfontenot; + +/** + * + * @author caleb + */ +public class Lab1CalebFontenot { + + public static void main(String[] args) + { + // Create a string named message + String message = "Hello World!"; + // Print our string + System.out.println(message); + } +} diff --git a/Lab1CalebFontenot/src/main/java/test.java b/Lab1CalebFontenot/src/main/java/test.java new file mode 100644 index 0000000..3450420 --- /dev/null +++ b/Lab1CalebFontenot/src/main/java/test.java @@ -0,0 +1,15 @@ +/* + * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license + * Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template + */ + +/** + * + * @author caleb + */ +public class test { + public static void main(String[] args) + { + System.out.println("Hello world 2"); + } +} diff --git a/Lab1CalebFontenot/target/Lab1CalebFontenot-1.0-SNAPSHOT.jar b/Lab1CalebFontenot/target/Lab1CalebFontenot-1.0-SNAPSHOT.jar new file mode 100644 index 0000000..b744471 Binary files /dev/null and b/Lab1CalebFontenot/target/Lab1CalebFontenot-1.0-SNAPSHOT.jar differ diff --git a/Lab1CalebFontenot/target/classes/NewClass.class b/Lab1CalebFontenot/target/classes/NewClass.class new file mode 100644 index 0000000..2702402 Binary files /dev/null and b/Lab1CalebFontenot/target/classes/NewClass.class differ diff --git a/Lab1CalebFontenot/target/classes/ShowLogicErrors.class b/Lab1CalebFontenot/target/classes/ShowLogicErrors.class new file mode 100644 index 0000000..89c6d2f Binary files /dev/null and b/Lab1CalebFontenot/target/classes/ShowLogicErrors.class differ diff --git a/Lab1CalebFontenot/target/classes/com/calebfontenot/lab1calebfontenot/Lab1CalebFontenot.class b/Lab1CalebFontenot/target/classes/com/calebfontenot/lab1calebfontenot/Lab1CalebFontenot.class new file mode 100644 index 0000000..4fdb2c3 Binary files /dev/null and b/Lab1CalebFontenot/target/classes/com/calebfontenot/lab1calebfontenot/Lab1CalebFontenot.class differ diff --git a/Lab1CalebFontenot/target/classes/test.class b/Lab1CalebFontenot/target/classes/test.class new file mode 100644 index 0000000..71f4053 Binary files /dev/null and b/Lab1CalebFontenot/target/classes/test.class differ diff --git a/Lab1CalebFontenot/target/maven-archiver/pom.properties b/Lab1CalebFontenot/target/maven-archiver/pom.properties new file mode 100644 index 0000000..ab252fa --- /dev/null +++ b/Lab1CalebFontenot/target/maven-archiver/pom.properties @@ -0,0 +1,5 @@ +#Generated by Maven +#Tue Aug 16 11:12:43 CDT 2022 +artifactId=Lab1CalebFontenot +groupId=com.calebfontenot.lab1calebfontenot +version=1.0-SNAPSHOT diff --git a/Lab1CalebFontenot/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst b/Lab1CalebFontenot/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst new file mode 100644 index 0000000..72bb981 --- /dev/null +++ b/Lab1CalebFontenot/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst @@ -0,0 +1 @@ +com/calebfontenot/lab1calebfontenot/Lab1CalebFontenot.class diff --git a/Lab1CalebFontenot/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst b/Lab1CalebFontenot/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst new file mode 100644 index 0000000..dd8a7dd --- /dev/null +++ b/Lab1CalebFontenot/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst @@ -0,0 +1 @@ +/home/caleb/NetBeansProjects/ADSV Java/Lab1CalebFontenot/src/main/java/com/calebfontenot/lab1calebfontenot/Lab1CalebFontenot.java diff --git a/Lab1CalebFontenot/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst b/Lab1CalebFontenot/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst new file mode 100644 index 0000000..e69de29 diff --git a/Lab2CalebFontenot/lab2CalebFontenot/pom.xml b/Lab2CalebFontenot/lab2CalebFontenot/pom.xml new file mode 100644 index 0000000..3dacc97 --- /dev/null +++ b/Lab2CalebFontenot/lab2CalebFontenot/pom.xml @@ -0,0 +1,14 @@ + + + 4.0.0 + com.calebfontenot.lab2calebfontenot + lab2CalebFontenot + 1.0-SNAPSHOT + jar + + UTF-8 + 18 + 18 + com.calebfontenot.lab2calebfontenot.Lab2CalebFontenot + + \ No newline at end of file diff --git a/Lab2CalebFontenot/lab2CalebFontenot/src/main/java/ComputeExpression.java b/Lab2CalebFontenot/lab2CalebFontenot/src/main/java/ComputeExpression.java new file mode 100644 index 0000000..04383d5 --- /dev/null +++ b/Lab2CalebFontenot/lab2CalebFontenot/src/main/java/ComputeExpression.java @@ -0,0 +1,16 @@ +/* + * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license + * Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template + */ + +/** + * + * @author caleb + */ +public class ComputeExpression { + public static void main(String[] args) { + System.out.print("(10.5 + 2 * 3) / (45 – 3.5) = "); + System.out.println((10.5 + 2 * 3) / (45 - 3.5)); + } +} + diff --git a/Lab2CalebFontenot/lab2CalebFontenot/src/main/java/ShowLogicErrors.java b/Lab2CalebFontenot/lab2CalebFontenot/src/main/java/ShowLogicErrors.java new file mode 100644 index 0000000..2794785 --- /dev/null +++ b/Lab2CalebFontenot/lab2CalebFontenot/src/main/java/ShowLogicErrors.java @@ -0,0 +1,15 @@ +/* + * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license + * Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template + */ + +/** + * + * @author caleb + */ +public class ShowLogicErrors { + public static void main(String[] args) { + System.out.print("Celsius 35 is Fahrenheit degree "); + System.out.println((9.0 / 5) * 35 + 32); + } +} diff --git a/Lab2CalebFontenot/lab2CalebFontenot/src/main/java/ShowRuntimeErrors.java b/Lab2CalebFontenot/lab2CalebFontenot/src/main/java/ShowRuntimeErrors.java new file mode 100644 index 0000000..f966acb --- /dev/null +++ b/Lab2CalebFontenot/lab2CalebFontenot/src/main/java/ShowRuntimeErrors.java @@ -0,0 +1,15 @@ +/* + * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license + * Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template + */ + +/** + * + * @author caleb + */ +// ShowRuntimeErrors.java: Program contains runtime errors +public class ShowRuntimeErrors { + public static void main(String[] args) { + System.out.println(1 / 0); + } +} diff --git a/Lab2CalebFontenot/lab2CalebFontenot/src/main/java/ShowSyntaxErrors.java b/Lab2CalebFontenot/lab2CalebFontenot/src/main/java/ShowSyntaxErrors.java new file mode 100644 index 0000000..e57d24e --- /dev/null +++ b/Lab2CalebFontenot/lab2CalebFontenot/src/main/java/ShowSyntaxErrors.java @@ -0,0 +1,16 @@ +/* + * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license + * Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template + */ + +/** + * + * @author caleb + */ +public class ShowSyntaxErrors { + + public static void main(String[] args) + { + System.out.println("Welcome to Java"); + } +} diff --git a/Lab2CalebFontenot/lab2CalebFontenot/src/main/java/WelcomeWithThreeMessages.java b/Lab2CalebFontenot/lab2CalebFontenot/src/main/java/WelcomeWithThreeMessages.java new file mode 100644 index 0000000..32ef4d1 --- /dev/null +++ b/Lab2CalebFontenot/lab2CalebFontenot/src/main/java/WelcomeWithThreeMessages.java @@ -0,0 +1,17 @@ +/* + * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license + * Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template + */ + +/** + * + * @author caleb + */ +public class WelcomeWithThreeMessages { + public static void main(String[] args) + { + System.out.println("Programming is fun!"); + System.out.println("Fundamentals First"); + System.out.println("Problem Driven"); + } +} diff --git a/Lab2CalebFontenot/lab2CalebFontenot/src/main/java/com/calebfontenot/lab2calebfontenot/Lab2CalebFontenot.java b/Lab2CalebFontenot/lab2CalebFontenot/src/main/java/com/calebfontenot/lab2calebfontenot/Lab2CalebFontenot.java new file mode 100644 index 0000000..cb08b65 --- /dev/null +++ b/Lab2CalebFontenot/lab2CalebFontenot/src/main/java/com/calebfontenot/lab2calebfontenot/Lab2CalebFontenot.java @@ -0,0 +1,17 @@ +/* + * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license + * Click nbfs://nbhost/SystemFileSystem/Templates/Project/Maven2/JavaApp/src/main/java/${packagePath}/${mainClassName}.java to edit this template + */ + +package com.calebfontenot.lab2calebfontenot; + +/** + * + * @author caleb + */ +public class Lab2CalebFontenot { + + public static void main(String[] args) { + System.out.println("Hello World!"); + } +} diff --git a/Lab2CalebFontenot/lab2CalebFontenot/target/classes/ComputeExpression.class b/Lab2CalebFontenot/lab2CalebFontenot/target/classes/ComputeExpression.class new file mode 100644 index 0000000..82d50ca Binary files /dev/null and b/Lab2CalebFontenot/lab2CalebFontenot/target/classes/ComputeExpression.class differ diff --git a/Lab2CalebFontenot/lab2CalebFontenot/target/classes/ShowLogicErrors.class b/Lab2CalebFontenot/lab2CalebFontenot/target/classes/ShowLogicErrors.class new file mode 100644 index 0000000..c153756 Binary files /dev/null and b/Lab2CalebFontenot/lab2CalebFontenot/target/classes/ShowLogicErrors.class differ diff --git a/Lab2CalebFontenot/lab2CalebFontenot/target/classes/ShowRuntimeErrors.class b/Lab2CalebFontenot/lab2CalebFontenot/target/classes/ShowRuntimeErrors.class new file mode 100644 index 0000000..c557ffa Binary files /dev/null and b/Lab2CalebFontenot/lab2CalebFontenot/target/classes/ShowRuntimeErrors.class differ diff --git a/Lab2CalebFontenot/lab2CalebFontenot/target/classes/ShowSyntaxErrors.class b/Lab2CalebFontenot/lab2CalebFontenot/target/classes/ShowSyntaxErrors.class new file mode 100644 index 0000000..98923d0 Binary files /dev/null and b/Lab2CalebFontenot/lab2CalebFontenot/target/classes/ShowSyntaxErrors.class differ diff --git a/Lab2CalebFontenot/lab2CalebFontenot/target/classes/WelcomeWithThreeMessages.class b/Lab2CalebFontenot/lab2CalebFontenot/target/classes/WelcomeWithThreeMessages.class new file mode 100644 index 0000000..4672b78 Binary files /dev/null and b/Lab2CalebFontenot/lab2CalebFontenot/target/classes/WelcomeWithThreeMessages.class differ diff --git a/Lab2CalebFontenot/lab2CalebFontenot/target/classes/com/calebfontenot/lab2calebfontenot/Lab2CalebFontenot.class b/Lab2CalebFontenot/lab2CalebFontenot/target/classes/com/calebfontenot/lab2calebfontenot/Lab2CalebFontenot.class new file mode 100644 index 0000000..8238098 Binary files /dev/null and b/Lab2CalebFontenot/lab2CalebFontenot/target/classes/com/calebfontenot/lab2calebfontenot/Lab2CalebFontenot.class differ diff --git a/Lab2CalebFontenot/lab2CalebFontenot/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst b/Lab2CalebFontenot/lab2CalebFontenot/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst new file mode 100644 index 0000000..01b1b35 --- /dev/null +++ b/Lab2CalebFontenot/lab2CalebFontenot/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst @@ -0,0 +1,2 @@ +com/calebfontenot/lab2calebfontenot/Lab2CalebFontenot.class +WelcomeWithThreeMessages.class diff --git a/Lab2CalebFontenot/lab2CalebFontenot/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst b/Lab2CalebFontenot/lab2CalebFontenot/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst new file mode 100644 index 0000000..a6890e6 --- /dev/null +++ b/Lab2CalebFontenot/lab2CalebFontenot/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst @@ -0,0 +1,2 @@ +/home/caleb/NetBeansProjects/ADSV Java/Lab2CalebFontenot/lab2CalebFontenot/src/main/java/WelcomeWithThreeMessages.java +/home/caleb/NetBeansProjects/ADSV Java/Lab2CalebFontenot/lab2CalebFontenot/src/main/java/com/calebfontenot/lab2calebfontenot/Lab2CalebFontenot.java diff --git a/Lab3CalebFontenot/pom.xml b/Lab3CalebFontenot/pom.xml new file mode 100644 index 0000000..86c82d5 --- /dev/null +++ b/Lab3CalebFontenot/pom.xml @@ -0,0 +1,14 @@ + + + 4.0.0 + com.calebfontenot.lab3calebfontenot + Lab3CalebFontenot + 1.0-SNAPSHOT + jar + + UTF-8 + 18 + 18 + com.calebfontenot.lab3calebfontenot.Lab3CalebFontenot + + \ No newline at end of file diff --git a/Lab3CalebFontenot/src/main/java/Exercise01_04.java b/Lab3CalebFontenot/src/main/java/Exercise01_04.java new file mode 100644 index 0000000..12babbf --- /dev/null +++ b/Lab3CalebFontenot/src/main/java/Exercise01_04.java @@ -0,0 +1,20 @@ +/* + * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license + * Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template + */ + +/** + * + * @author caleb + */ +public class Exercise01_04 { + + public static void main(String[] args) + { + System.out.println("a a^2 a^3"); + System.out.println("1 1 1"); + System.out.println("2 4 8"); + System.out.println("3 9 27"); + System.out.println("4 16 64"); + } +} diff --git a/Lab3CalebFontenot/src/main/java/Exercise01_06.java b/Lab3CalebFontenot/src/main/java/Exercise01_06.java new file mode 100644 index 0000000..8f1e199 --- /dev/null +++ b/Lab3CalebFontenot/src/main/java/Exercise01_06.java @@ -0,0 +1,16 @@ +/* + * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license + * Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template + */ + +/** + * + * @author caleb + */ +public class Exercise01_06 { + + public static void main(String[] args) + { + System.out.println(1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9); + } +} diff --git a/Lab3CalebFontenot/src/main/java/Exercise01_07.java b/Lab3CalebFontenot/src/main/java/Exercise01_07.java new file mode 100644 index 0000000..28a84d8 --- /dev/null +++ b/Lab3CalebFontenot/src/main/java/Exercise01_07.java @@ -0,0 +1,16 @@ +/* + * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license + * Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template + */ + +/** + * + * @author caleb + */ +public class Exercise01_07 { + public static void main(String[] args) + { + System.out.println(4 * (1.0 - (1.0/3) + (1.0/5) - (1.0/7) + (1.0/9) - (1.0/11))); + System.out.println(4 * (1.0 - (1.0/3) + (1.0/5) - (1.0/7) + (1.0/9) - (1.0/11) + (1.0/13))); + } +} diff --git a/Lab3CalebFontenot/src/main/java/Exercise01_11.java b/Lab3CalebFontenot/src/main/java/Exercise01_11.java new file mode 100644 index 0000000..e4f7723 --- /dev/null +++ b/Lab3CalebFontenot/src/main/java/Exercise01_11.java @@ -0,0 +1,25 @@ +/* + * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license + * Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template + */ + +/** + * + * @author caleb + */ +public class Exercise01_11 { + + public static void main(String[] args) + { + double Population = 312032486.0; + for (int i = 1; i <= 5; i++) { + //One birth every 7 seconds + Population += ((60 * 60 * 24 * 365) / 7.0); + //One death every 13 seconds + Population -= ((60 * 60 * 24 * 365) / 13.0); + //One new immigrant every 45 seconds + Population += ((60 * 60 * 24 * 365) / 45.0); + System.out.println(Population); + } + } +} diff --git a/Lab3CalebFontenot/src/main/java/com/calebfontenot/lab3calebfontenot/Lab3CalebFontenot.java b/Lab3CalebFontenot/src/main/java/com/calebfontenot/lab3calebfontenot/Lab3CalebFontenot.java new file mode 100644 index 0000000..b8e74c6 --- /dev/null +++ b/Lab3CalebFontenot/src/main/java/com/calebfontenot/lab3calebfontenot/Lab3CalebFontenot.java @@ -0,0 +1,17 @@ +/* + * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license + * Click nbfs://nbhost/SystemFileSystem/Templates/Project/Maven2/JavaApp/src/main/java/${packagePath}/${mainClassName}.java to edit this template + */ + +package com.calebfontenot.lab3calebfontenot; + +/** + * + * @author caleb + */ +public class Lab3CalebFontenot { + + public static void main(String[] args) { + System.out.println("Hello World!"); + } +} diff --git a/Lab3CalebFontenot/target/classes/.netbeans_automatic_build b/Lab3CalebFontenot/target/classes/.netbeans_automatic_build new file mode 100644 index 0000000..e69de29 diff --git a/Lab3CalebFontenot/target/classes/Exercise01_04.class b/Lab3CalebFontenot/target/classes/Exercise01_04.class new file mode 100644 index 0000000..66c08f3 Binary files /dev/null and b/Lab3CalebFontenot/target/classes/Exercise01_04.class differ diff --git a/Lab3CalebFontenot/target/classes/Exercise01_06.class b/Lab3CalebFontenot/target/classes/Exercise01_06.class new file mode 100644 index 0000000..c31b40e Binary files /dev/null and b/Lab3CalebFontenot/target/classes/Exercise01_06.class differ diff --git a/Lab3CalebFontenot/target/classes/Exercise01_07.class b/Lab3CalebFontenot/target/classes/Exercise01_07.class new file mode 100644 index 0000000..bb15f73 Binary files /dev/null and b/Lab3CalebFontenot/target/classes/Exercise01_07.class differ diff --git a/Lab3CalebFontenot/target/classes/Exercise01_11.class b/Lab3CalebFontenot/target/classes/Exercise01_11.class new file mode 100644 index 0000000..5c220b4 Binary files /dev/null and b/Lab3CalebFontenot/target/classes/Exercise01_11.class differ diff --git a/Lab3CalebFontenot/target/classes/com/calebfontenot/lab3calebfontenot/Lab3CalebFontenot.class b/Lab3CalebFontenot/target/classes/com/calebfontenot/lab3calebfontenot/Lab3CalebFontenot.class new file mode 100644 index 0000000..dad547e Binary files /dev/null and b/Lab3CalebFontenot/target/classes/com/calebfontenot/lab3calebfontenot/Lab3CalebFontenot.class differ diff --git a/Lab3CalebFontenot/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst b/Lab3CalebFontenot/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst new file mode 100644 index 0000000..5e32619 --- /dev/null +++ b/Lab3CalebFontenot/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst @@ -0,0 +1,2 @@ +com/calebfontenot/lab3calebfontenot/Lab3CalebFontenot.class +Exercise01_04.class diff --git a/Lab3CalebFontenot/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst b/Lab3CalebFontenot/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst new file mode 100644 index 0000000..c6eb260 --- /dev/null +++ b/Lab3CalebFontenot/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst @@ -0,0 +1,2 @@ +/home/caleb/NetBeansProjects/ADSV Java/Lab3CalebFontenot/src/main/java/Exercise01_04.java +/home/caleb/NetBeansProjects/ADSV Java/Lab3CalebFontenot/src/main/java/com/calebfontenot/lab3calebfontenot/Lab3CalebFontenot.java diff --git a/Lab3CalebFontenot/target/test-classes/.netbeans_automatic_build b/Lab3CalebFontenot/target/test-classes/.netbeans_automatic_build new file mode 100644 index 0000000..e69de29 diff --git a/Lab3_1_CalebFontenot/pom.xml b/Lab3_1_CalebFontenot/pom.xml new file mode 100644 index 0000000..6fcaf0c --- /dev/null +++ b/Lab3_1_CalebFontenot/pom.xml @@ -0,0 +1,14 @@ + + + 4.0.0 + com.calebfontenot.lab3_1_calebfontenot + Lab3_1_CalebFontenot + 1.0-SNAPSHOT + jar + + UTF-8 + 18 + 18 + com.calebfontenot.lab3_1_calebfontenot.Lab3_1_CalebFontenot + + \ No newline at end of file diff --git a/Lab3_1_CalebFontenot/src/main/java/com/calebfontenot/lab3_1_calebfontenot/Lab3.java b/Lab3_1_CalebFontenot/src/main/java/com/calebfontenot/lab3_1_calebfontenot/Lab3.java new file mode 100644 index 0000000..c293d71 --- /dev/null +++ b/Lab3_1_CalebFontenot/src/main/java/com/calebfontenot/lab3_1_calebfontenot/Lab3.java @@ -0,0 +1,42 @@ +/* + * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license + * Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template + */ +package com.calebfontenot.lab3_1_calebfontenot; +import java.util.Scanner; +/** + * + * @author caleb + */ +public class Lab3 { + public static void main(String[] args) + { + // Create a scanner object + Scanner input = new Scanner(System.in); + + // Prompt for hight in feet + System.out.print("Enter the height (feet): "); + double height; + height = input.nextDouble(); + + // Prompt for width in feet + System.out.print("Enter the width (feet):"); + double width; + width = input.nextDouble(); + + // Calculate the area + double area; + area = height * width; + // Print area calculated + System.out.println("Calculated area is "+area); + //create constants + final double GALLONS_PER_SQUARE_FEET = 150.0; + + // calculate the gallons + double gallons; + gallons = area/GALLONS_PER_SQUARE_FEET; + //calculate the number of gallons needed to paint the wall + System.out.println("The amount of paint is " + gallons +" gallons."); + + } +} diff --git a/Lab3_1_CalebFontenot/src/main/java/com/calebfontenot/lab3_1_calebfontenot/MilesToKilometers.java b/Lab3_1_CalebFontenot/src/main/java/com/calebfontenot/lab3_1_calebfontenot/MilesToKilometers.java new file mode 100644 index 0000000..89f8301 --- /dev/null +++ b/Lab3_1_CalebFontenot/src/main/java/com/calebfontenot/lab3_1_calebfontenot/MilesToKilometers.java @@ -0,0 +1,29 @@ +/* + * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license + * Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template + */ +package com.calebfontenot.lab3_1_calebfontenot; + +import java.util.Scanner; + +/** + * + * @author caleb + */ +public class MilesToKilometers { + public static void main(String[] args) + { + double miles; + double km; + Scanner scanner = new Scanner(System.in); + + //> 1. Prompt the user to enter the number of miles + System.out.println("Please enter miles to convert into kilometers"); + //> 2. Read the miles and store it into a variable + miles = scanner.nextDouble(); + //> 3. Calculate the KM from the entered miles + km = miles * 1.67; + //> 4. Display the result + System.out.println("You entered "+miles+" miles which is "+km+" kilometers"); + } +} diff --git a/Lab3_1_CalebFontenot/src/main/java/com/calebfontenot/lab3_1_calebfontenot/RunwayLength.java b/Lab3_1_CalebFontenot/src/main/java/com/calebfontenot/lab3_1_calebfontenot/RunwayLength.java new file mode 100644 index 0000000..7f8ceb8 --- /dev/null +++ b/Lab3_1_CalebFontenot/src/main/java/com/calebfontenot/lab3_1_calebfontenot/RunwayLength.java @@ -0,0 +1,38 @@ +package com.calebfontenot.lab3_1_calebfontenot; + +import java.util.Scanner; + +/* + * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license + * Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template + */ + +/** + * + * @author caleb + */ +public class RunwayLength { + public static void main(String[] args) + { + + //Define data objects + double length; + double acceleration; + double velocity; + + //Create scanner + Scanner input = new Scanner(System.in); + + //Prompt for input + System.out.print("Enter velocity: "); + velocity = input.nextDouble(); + System.out.print("Enter acceleration: "); + acceleration = input.nextDouble(); + + //Calculate + length = Math.pow(velocity, 2) / (2 * acceleration); + + //Print calculation + System.out.println("The minimum runway length for this airplane is "+length); + } +} diff --git a/Lab3_1_CalebFontenot/target/classes/com/calebfontenot/lab3_1_calebfontenot/Lab3.class b/Lab3_1_CalebFontenot/target/classes/com/calebfontenot/lab3_1_calebfontenot/Lab3.class new file mode 100644 index 0000000..83dce8e Binary files /dev/null and b/Lab3_1_CalebFontenot/target/classes/com/calebfontenot/lab3_1_calebfontenot/Lab3.class differ diff --git a/Lab3_1_CalebFontenot/target/classes/com/calebfontenot/lab3_1_calebfontenot/MilesToKilometers.class b/Lab3_1_CalebFontenot/target/classes/com/calebfontenot/lab3_1_calebfontenot/MilesToKilometers.class new file mode 100644 index 0000000..7c8a29f Binary files /dev/null and b/Lab3_1_CalebFontenot/target/classes/com/calebfontenot/lab3_1_calebfontenot/MilesToKilometers.class differ diff --git a/Lab3_1_CalebFontenot/target/classes/com/calebfontenot/lab3_1_calebfontenot/RunwayLength.class b/Lab3_1_CalebFontenot/target/classes/com/calebfontenot/lab3_1_calebfontenot/RunwayLength.class new file mode 100644 index 0000000..1d457a4 Binary files /dev/null and b/Lab3_1_CalebFontenot/target/classes/com/calebfontenot/lab3_1_calebfontenot/RunwayLength.class differ diff --git a/Lab3_1_CalebFontenot/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst b/Lab3_1_CalebFontenot/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst new file mode 100644 index 0000000..12908b6 --- /dev/null +++ b/Lab3_1_CalebFontenot/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst @@ -0,0 +1,2 @@ +com/calebfontenot/lab3_1_calebfontenot/MilesToKilometers.class +com/calebfontenot/lab3_1_calebfontenot/Lab3_1_CalebFontenot.class diff --git a/Lab3_1_CalebFontenot/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst b/Lab3_1_CalebFontenot/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst new file mode 100644 index 0000000..54e1619 --- /dev/null +++ b/Lab3_1_CalebFontenot/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst @@ -0,0 +1,2 @@ +/home/caleb/NetBeansProjects/ADSV Java/Lab3_1_CalebFontenot/src/main/java/com/calebfontenot/lab3_1_calebfontenot/Lab3_1_CalebFontenot.java +/home/caleb/NetBeansProjects/ADSV Java/Lab3_1_CalebFontenot/src/main/java/com/calebfontenot/lab3_1_calebfontenot/MilesToKilometers.java diff --git a/Lab4_1/pom.xml b/Lab4_1/pom.xml new file mode 100644 index 0000000..d51fd72 --- /dev/null +++ b/Lab4_1/pom.xml @@ -0,0 +1,14 @@ + + + 4.0.0 + com.calebfontenot.lab4_1 + Lab4_1 + 1.0-SNAPSHOT + jar + + UTF-8 + 18 + 18 + com.calebfontenot.lab4_1.Lab4_1 + + \ No newline at end of file diff --git a/Lab4_1/src/main/java/com/calebfontenot/lab4_1/DisplayTime.java b/Lab4_1/src/main/java/com/calebfontenot/lab4_1/DisplayTime.java new file mode 100644 index 0000000..8159129 --- /dev/null +++ b/Lab4_1/src/main/java/com/calebfontenot/lab4_1/DisplayTime.java @@ -0,0 +1,28 @@ +/* + * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license + * Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template + */ +package com.calebfontenot.lab4_1; + +/** + * + * @author caleb + */ +import java.util.Scanner; + +public class DisplayTime { + + public static void main(String[] args) + { + Scanner input = new Scanner(System.in); + // Prompt the user for input + System.out.print("Enter an integer for seconds: "); + int seconds = input.nextInt(); + + int minutes = seconds / 60; // Find minutes in seconds + int remainingSeconds = seconds % 60; // Seconds remaining + System.out.println(seconds + " seconds is " + minutes + + " minutes and " + remainingSeconds + " seconds"); + } +} + diff --git a/Lab4_1/src/main/java/com/calebfontenot/lab4_1/Lab4_1.java b/Lab4_1/src/main/java/com/calebfontenot/lab4_1/Lab4_1.java new file mode 100644 index 0000000..ef43b5d --- /dev/null +++ b/Lab4_1/src/main/java/com/calebfontenot/lab4_1/Lab4_1.java @@ -0,0 +1,17 @@ +/* + * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license + * Click nbfs://nbhost/SystemFileSystem/Templates/Project/Maven2/JavaApp/src/main/java/${packagePath}/${mainClassName}.java to edit this template + */ + +package com.calebfontenot.lab4_1; + +/** + * + * @author caleb + */ +public class Lab4_1 { + + public static void main(String[] args) { + System.out.println("Hello World!"); + } +} diff --git a/Lab4_1/src/main/java/com/calebfontenot/lab4_1/SalesTax.java b/Lab4_1/src/main/java/com/calebfontenot/lab4_1/SalesTax.java new file mode 100644 index 0000000..9b35416 --- /dev/null +++ b/Lab4_1/src/main/java/com/calebfontenot/lab4_1/SalesTax.java @@ -0,0 +1,24 @@ +/* + * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license + * Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template + */ +package com.calebfontenot.lab4_1; + +/** + * + * @author caleb + */ +import java.util.Scanner; + +public class SalesTax { + public static void main(String[] args) { + Scanner input = new Scanner(System.in); + + System.out.print("Enter purchase amount: "); + double purchaseAmount = input.nextDouble(); + + double tax = purchaseAmount * 0.06; + System.out.println("Sales tax is " + (int)(tax * 100) / 100.0); + } +} + diff --git a/Lab4_1/target/classes/.netbeans_automatic_build b/Lab4_1/target/classes/.netbeans_automatic_build new file mode 100644 index 0000000..e69de29 diff --git a/Lab4_1/target/classes/com/calebfontenot/lab4_1/DisplayTime.class b/Lab4_1/target/classes/com/calebfontenot/lab4_1/DisplayTime.class new file mode 100644 index 0000000..c875630 Binary files /dev/null and b/Lab4_1/target/classes/com/calebfontenot/lab4_1/DisplayTime.class differ diff --git a/Lab4_1/target/classes/com/calebfontenot/lab4_1/Lab4_1.class b/Lab4_1/target/classes/com/calebfontenot/lab4_1/Lab4_1.class new file mode 100644 index 0000000..d174c4a Binary files /dev/null and b/Lab4_1/target/classes/com/calebfontenot/lab4_1/Lab4_1.class differ diff --git a/Lab4_1/target/classes/com/calebfontenot/lab4_1/SalesTax.class b/Lab4_1/target/classes/com/calebfontenot/lab4_1/SalesTax.class new file mode 100644 index 0000000..06814dd Binary files /dev/null and b/Lab4_1/target/classes/com/calebfontenot/lab4_1/SalesTax.class differ diff --git a/Lab4_1/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst b/Lab4_1/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst new file mode 100644 index 0000000..5b9c112 --- /dev/null +++ b/Lab4_1/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst @@ -0,0 +1,2 @@ +com/calebfontenot/lab4_1/DisplayTime.class +com/calebfontenot/lab4_1/Lab4_1.class diff --git a/Lab4_1/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst b/Lab4_1/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst new file mode 100644 index 0000000..a3e4d8b --- /dev/null +++ b/Lab4_1/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst @@ -0,0 +1,2 @@ +/home/caleb/NetBeansProjects/ADSV Java/Lab4_1/src/main/java/com/calebfontenot/lab4_1/DisplayTime.java +/home/caleb/NetBeansProjects/ADSV Java/Lab4_1/src/main/java/com/calebfontenot/lab4_1/Lab4_1.java diff --git a/Lab4_1/target/test-classes/.netbeans_automatic_build b/Lab4_1/target/test-classes/.netbeans_automatic_build new file mode 100644 index 0000000..e69de29 diff --git a/MP1/pom.xml b/MP1/pom.xml new file mode 100644 index 0000000..6a6d4e8 --- /dev/null +++ b/MP1/pom.xml @@ -0,0 +1,14 @@ + + + 4.0.0 + com.calebfontenot.mp1 + MP1 + 1.0-SNAPSHOT + jar + + UTF-8 + 18 + 18 + com.calebfontenot.mp1.MP1 + + \ No newline at end of file diff --git a/MP1/src/main/java/com/calebfontenot/mp1/MP1.java b/MP1/src/main/java/com/calebfontenot/mp1/MP1.java new file mode 100644 index 0000000..e7abdb9 --- /dev/null +++ b/MP1/src/main/java/com/calebfontenot/mp1/MP1.java @@ -0,0 +1,17 @@ +/* + * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license + * Click nbfs://nbhost/SystemFileSystem/Templates/Project/Maven2/JavaApp/src/main/java/${packagePath}/${mainClassName}.java to edit this template + */ + +package com.calebfontenot.mp1; + +/** + * + * @author caleb + */ +public class MP1 { + + public static void main(String[] args) { + System.out.println("Hello World!"); + } +} diff --git a/MP1_CalebFontenot/pom.xml b/MP1_CalebFontenot/pom.xml new file mode 100644 index 0000000..bed6bf2 --- /dev/null +++ b/MP1_CalebFontenot/pom.xml @@ -0,0 +1,14 @@ + + + 4.0.0 + com.calebfontenot.mp1_calebfontenot + MP1_CalebFontenot + 1.0-SNAPSHOT + jar + + UTF-8 + 18 + 18 + com.calebfontenot.mp1_calebfontenot.MP1_CalebFontenot + + \ No newline at end of file diff --git a/MP1_CalebFontenot/src/main/java/com/calebfontenot/mp1_calebfontenot/Cylinder.java b/MP1_CalebFontenot/src/main/java/com/calebfontenot/mp1_calebfontenot/Cylinder.java new file mode 100644 index 0000000..666367d --- /dev/null +++ b/MP1_CalebFontenot/src/main/java/com/calebfontenot/mp1_calebfontenot/Cylinder.java @@ -0,0 +1,32 @@ +/* + * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license + * Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template + */ +package com.calebfontenot.mp1_calebfontenot; + +import java.util.Scanner; + +/** + * + * @author caleb + */ +public class Cylinder { + public static void main(String[] args) + { + Scanner input = new Scanner(System.in); + + // Enter radius of the cylinder + System.out.print("Enter the radius and length of a cylinder: "); + double radius = input.nextDouble(); + double length = input.nextDouble(); + + // Compute area and volume + double area = radius * radius * 3.14159; + double volume = area * length; + + // Display result + System.out.println("The area is " + area); + System.out.println("The volume of the cylinder is " + volume); + + } +} diff --git a/MP1_CalebFontenot/src/main/java/com/calebfontenot/mp1_calebfontenot/MP1_CalebFontenot.java b/MP1_CalebFontenot/src/main/java/com/calebfontenot/mp1_calebfontenot/MP1_CalebFontenot.java new file mode 100644 index 0000000..aaa88eb --- /dev/null +++ b/MP1_CalebFontenot/src/main/java/com/calebfontenot/mp1_calebfontenot/MP1_CalebFontenot.java @@ -0,0 +1,17 @@ +/* + * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license + * Click nbfs://nbhost/SystemFileSystem/Templates/Project/Maven2/JavaApp/src/main/java/${packagePath}/${mainClassName}.java to edit this template + */ + +package com.calebfontenot.mp1_calebfontenot; + +/** + * + * @author caleb + */ +public class MP1_CalebFontenot { + + public static void main(String[] args) { + System.out.println("Hello World!"); + } +} diff --git a/MP1_CalebFontenot/src/main/java/com/calebfontenot/mp1_calebfontenot/NumberOfYears.java b/MP1_CalebFontenot/src/main/java/com/calebfontenot/mp1_calebfontenot/NumberOfYears.java new file mode 100644 index 0000000..f1b870e --- /dev/null +++ b/MP1_CalebFontenot/src/main/java/com/calebfontenot/mp1_calebfontenot/NumberOfYears.java @@ -0,0 +1,41 @@ +/* + * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license + * Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template + */ +package com.calebfontenot.mp1_calebfontenot; + +import java.util.Scanner; + +/** + * + * @author caleb + */ +public class NumberOfYears { + public static void main(String[] args) + { + // Define vars + double NumberOfMinutes; + double NumberOfYears; + double NumberOfDays; + double NumberOfHours; + + // Create Scanner + Scanner input = new Scanner(System.in); + + // Prompt for input + System.out.print("Enter the number of minutes: "); + NumberOfMinutes = input.nextDouble(); + + // Calculate + NumberOfHours = (NumberOfMinutes / 60); + NumberOfDays = (NumberOfHours / 24); + NumberOfYears = (NumberOfDays / 365); + + + // Print output + System.out.println((int) NumberOfMinutes+" minutes is approx. :"); + System.out.println((int) NumberOfHours+" hours,"); + System.out.println((int) NumberOfDays+" days,"); + System.out.println((int) NumberOfYears+" years."); + } +} diff --git a/MP1_CalebFontenot/src/main/java/com/calebfontenot/mp1_calebfontenot/SumOfDigits.java b/MP1_CalebFontenot/src/main/java/com/calebfontenot/mp1_calebfontenot/SumOfDigits.java new file mode 100644 index 0000000..f4647be --- /dev/null +++ b/MP1_CalebFontenot/src/main/java/com/calebfontenot/mp1_calebfontenot/SumOfDigits.java @@ -0,0 +1,34 @@ +/* + * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license + * Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template + */ +package com.calebfontenot.mp1_calebfontenot; + +/** + * + * @author caleb + */ +public class SumOfDigits { + public static void main(String[] args) + { + java.util.Scanner input = new java.util.Scanner(System.in); + //> Read a number + System.out.print("Inter an integer between 0 and 1000: "); + int number = input.nextInt(); + + //> Find all digits in number + int lastDigit = number % 10; + int remainingNumber = number / 10; + int secondLastDigit = remainingNumber % 10; + remainingNumber = remainingNumber / 10; + int thirdLastDigit = remainingNumber % 10; + + //> Obtain the sum of all digits + int sum = lastDigit + secondLastDigit + thirdLastDigit; + + //>Display results + System.out.println("The sum of all digits in "+ number + + " is " + sum); + } + +} diff --git a/MP1_CalebFontenot/src/main/java/com/calebfontenot/mp1_calebfontenot/Total.java b/MP1_CalebFontenot/src/main/java/com/calebfontenot/mp1_calebfontenot/Total.java new file mode 100644 index 0000000..21e153c --- /dev/null +++ b/MP1_CalebFontenot/src/main/java/com/calebfontenot/mp1_calebfontenot/Total.java @@ -0,0 +1,40 @@ +/* + * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license + * Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template + */ +package com.calebfontenot.mp1_calebfontenot; + +import java.util.Scanner; + +/** + * + * @author caleb + */ +public class Total { + public static void main(String[] args) + { + // Define variables: + double subtotal; + double gratuity; + double total; + + // Get subtotal and gratuity rate + // Setup Scanner + Scanner input = new Scanner(System.in); + + // Get vars + System.out.print("Enter subtotal and gratuity rate: "); + subtotal = input.nextDouble(); + gratuity = input.nextDouble(); + + // Calculate + // Convert gratuity into a decimal because its a percentage: + gratuity = (gratuity / 10); //* 10; + + total = (subtotal + gratuity); + + // Print result + System.out.println("The gratuity is $"+gratuity+" and the total is $"+total); + + } +} diff --git a/MP1_CalebFontenot/target/classes/.netbeans_automatic_build b/MP1_CalebFontenot/target/classes/.netbeans_automatic_build new file mode 100644 index 0000000..e69de29 diff --git a/MP1_CalebFontenot/target/classes/com/calebfontenot/mp1_calebfontenot/Cylinder.class b/MP1_CalebFontenot/target/classes/com/calebfontenot/mp1_calebfontenot/Cylinder.class new file mode 100644 index 0000000..5a3e8d6 Binary files /dev/null and b/MP1_CalebFontenot/target/classes/com/calebfontenot/mp1_calebfontenot/Cylinder.class differ diff --git a/MP1_CalebFontenot/target/classes/com/calebfontenot/mp1_calebfontenot/MP1_CalebFontenot.class b/MP1_CalebFontenot/target/classes/com/calebfontenot/mp1_calebfontenot/MP1_CalebFontenot.class new file mode 100644 index 0000000..76597ed Binary files /dev/null and b/MP1_CalebFontenot/target/classes/com/calebfontenot/mp1_calebfontenot/MP1_CalebFontenot.class differ diff --git a/MP1_CalebFontenot/target/classes/com/calebfontenot/mp1_calebfontenot/NumberOfYears.class b/MP1_CalebFontenot/target/classes/com/calebfontenot/mp1_calebfontenot/NumberOfYears.class new file mode 100644 index 0000000..9b086de Binary files /dev/null and b/MP1_CalebFontenot/target/classes/com/calebfontenot/mp1_calebfontenot/NumberOfYears.class differ diff --git a/MP1_CalebFontenot/target/classes/com/calebfontenot/mp1_calebfontenot/SumOfDigits.class b/MP1_CalebFontenot/target/classes/com/calebfontenot/mp1_calebfontenot/SumOfDigits.class new file mode 100644 index 0000000..28c3e7c Binary files /dev/null and b/MP1_CalebFontenot/target/classes/com/calebfontenot/mp1_calebfontenot/SumOfDigits.class differ diff --git a/MP1_CalebFontenot/target/classes/com/calebfontenot/mp1_calebfontenot/Total.class b/MP1_CalebFontenot/target/classes/com/calebfontenot/mp1_calebfontenot/Total.class new file mode 100644 index 0000000..7ecaded Binary files /dev/null and b/MP1_CalebFontenot/target/classes/com/calebfontenot/mp1_calebfontenot/Total.class differ diff --git a/MP1_CalebFontenot/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst b/MP1_CalebFontenot/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst new file mode 100644 index 0000000..6d7369d --- /dev/null +++ b/MP1_CalebFontenot/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst @@ -0,0 +1,2 @@ +com/calebfontenot/mp1_calebfontenot/MP1_CalebFontenot.class +com/calebfontenot/mp1_calebfontenot/Cylinder.class diff --git a/MP1_CalebFontenot/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst b/MP1_CalebFontenot/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst new file mode 100644 index 0000000..65f8347 --- /dev/null +++ b/MP1_CalebFontenot/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst @@ -0,0 +1,2 @@ +/home/caleb/NetBeansProjects/ADSV Java/MP1_CalebFontenot/src/main/java/com/calebfontenot/mp1_calebfontenot/Cylinder.java +/home/caleb/NetBeansProjects/ADSV Java/MP1_CalebFontenot/src/main/java/com/calebfontenot/mp1_calebfontenot/MP1_CalebFontenot.java diff --git a/MP1_CalebFontenot/target/test-classes/.netbeans_automatic_build b/MP1_CalebFontenot/target/test-classes/.netbeans_automatic_build new file mode 100644 index 0000000..e69de29