diff --git a/.idea/codeStyles/Project.xml b/.idea/codeStyles/Project.xml
new file mode 100644
index 0000000..919ce1f
--- /dev/null
+++ b/.idea/codeStyles/Project.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/codeStyles/codeStyleConfig.xml b/.idea/codeStyles/codeStyleConfig.xml
new file mode 100644
index 0000000..a55e7a1
--- /dev/null
+++ b/.idea/codeStyles/codeStyleConfig.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/misc.xml b/.idea/misc.xml
index cf9abe6..501ce09 100644
--- a/.idea/misc.xml
+++ b/.idea/misc.xml
@@ -1,6 +1,6 @@
-
+
\ No newline at end of file
diff --git a/src/GettingHotInHere.java b/src/GettingHotInHere.java
index 7a5b209..6875fb7 100644
--- a/src/GettingHotInHere.java
+++ b/src/GettingHotInHere.java
@@ -9,6 +9,10 @@ public static void main(String[] args) {
// The instantiation code for a Scanner instance.
Scanner scanner = new Scanner(System.in);
System.out.print("What is the temperature in °F: ");
- int number = scanner.nextInt();
+ int x = scanner.nextInt();
+ float nextx = x - 32;
+ System.out.println(nextx);
+ float y = nextx * (5 / 9f);
+ System.out.println(y);
}
}
diff --git a/src/MrRoboto.java b/src/MrRoboto.java
index c576091..326b40c 100644
--- a/src/MrRoboto.java
+++ b/src/MrRoboto.java
@@ -14,6 +14,7 @@ public static void main(String[] args) {
String domo = "Domo arigato ";
System.out.print("My name is Mr. Roboto, are you Kilroy? ");
- // Write your program here
+ String first = scanner.nextLine();
+ System.out.println("Domo arigato " + first);
}
}