diff --git a/.idea/misc.xml b/.idea/misc.xml
index 639900d..cbbff6a 100644
--- a/.idea/misc.xml
+++ b/.idea/misc.xml
@@ -1,6 +1,6 @@
-
+
\ No newline at end of file
diff --git a/Java-Lab-003.iml b/Java-Lab-003.iml
index b46c0dd..e1006ff 100644
--- a/Java-Lab-003.iml
+++ b/Java-Lab-003.iml
@@ -5,6 +5,7 @@
+
\ No newline at end of file
diff --git a/README.md b/README.md
index cdcf86f..c2b8996 100644
--- a/README.md
+++ b/README.md
@@ -21,6 +21,10 @@ For each of the issues above, screenshot and add the error images to this repo n
### **Note:**
Your answers to this exercise should be added using Markdown into the project's `README.md` file so that they get committed with the project's code..
+### **Error Images**
+
+
+
---
## Part 2: Celsius to Fahrenheit Converter
diff --git a/error01.png b/error01.png
new file mode 100644
index 0000000..fd5be67
Binary files /dev/null and b/error01.png differ
diff --git a/error02.png b/error02.png
new file mode 100644
index 0000000..b1f4ae4
Binary files /dev/null and b/error02.png differ
diff --git a/error03.png b/error03.png
new file mode 100644
index 0000000..464e9cb
Binary files /dev/null and b/error03.png differ
diff --git a/src/SecondsConverter.java b/src/SecondsConverter.java
new file mode 100644
index 0000000..9fd2c20
--- /dev/null
+++ b/src/SecondsConverter.java
@@ -0,0 +1,31 @@
+/*
+Quinn McKay
+1/31/2024
+Part 3 of Java Lab 03
+ */
+
+import java.util.Scanner;
+
+public class SecondsConverter {
+
+ public static void main(String[] args){
+ int seconds;
+ int hours, minutes, remainder_minutes, remainder_seconds;
+ final int seconds_per_minute = 60;
+ final int minutes_per_hour = 60;
+ Scanner time = new Scanner(System.in);
+
+ System.out.print("How many seconds? ");
+ seconds = time.nextInt();
+
+ minutes = (seconds / seconds_per_minute);
+ hours = (minutes / minutes_per_hour);
+ remainder_minutes = (minutes % minutes_per_hour);
+ remainder_seconds = (seconds % seconds_per_minute);
+
+ System.out.printf("%d seconds = %d hours, %d minutes, and %d seconds", seconds, hours, remainder_minutes, remainder_seconds);
+
+
+
+ }
+}
diff --git a/src/java/Part1.java b/src/java/Part1.java
new file mode 100644
index 0000000..8594ed0
--- /dev/null
+++ b/src/java/Part1.java
@@ -0,0 +1,18 @@
+/*
+Quinn McKay
+1/31/2024
+Part 1 of Java Lab 03
+ */
+
+public class Part1 {
+ public static void main(String [] args) {
+
+ int a = 5;
+ double b = 3.67;
+
+ System.out.printf("Number = %f", a);
+ System.out.printf("Number = %d", b);
+ System.out.printf("Number = %d + %f", a);
+
+ }
+}
\ No newline at end of file
diff --git a/src/java/TempConverter.java b/src/java/TempConverter.java
new file mode 100644
index 0000000..827f81e
--- /dev/null
+++ b/src/java/TempConverter.java
@@ -0,0 +1,23 @@
+/*
+Quinn McKay
+1/31/2024
+Part 2 of Java Lab 03
+ */
+
+import java.util.Scanner;
+public class TempConverter {
+
+ public static void main(String[] args) {
+ int c;
+ double f;
+ Scanner celsius = new Scanner(System.in);
+
+ System.out.print("Enter Celsius: ");
+ c = celsius.nextInt();
+ f = c * 1.8 + 32;
+
+ System.out.printf("%d Celsius = %.1f Fahrenheit.", c, f);
+
+
+ }
+}