This is the input part of my problem. Write a program that will continuously allow the user to enter the following:
*Temperature at 3 different instances
Unit of Temperature for the 3 inputs (Celsius, Fahrenheit, Kelvin)
Unit of Temperature for Conversion (Celsius, Fahrenheit, Kelvin)
If none of these conditions are met or the output has been printed then it will return to ask the
user to enter new values.
If at any point during the input stage the user enters the word "Quit" then end the program.*
I was able to do everything in the problem but I skipped the last condition above since I don't know how to set it up. Now this is the input phase of my program:
Scanner sc = new Scanner(System.in);
System.out.println("Please give three numbers");
int num1 = sc.nextInt();
int num2 = sc.nextInt();
int num3 = sc.nextInt();
System.out.println("Choose the temperature unit of the three numbers.");
System.out.println("Enter 1 for Celsius, 2 for Fahrenheit and 3 for Kelvin");
int tempUnit = sc.nextInt();
switch (tempUnit) {
case (1) -> System.out.println("Celsius was chosen.");
case (2) -> System.out.println("Fahrenheit was chosen.");
case (3) -> System.out.println("Kelvin was chosen.");
}
System.out.println("Choose the temperature unit you want to convert it into.");
System.out.println("Enter 1 for Celsius, 2 for Fahrenheit and 3 for Kelvin");
int chosenTemp = sc.nextInt();
switch (chosenTemp) {
case (1) -> System.out.println("Celsius was chosen.");
case (2) -> System.out.println("Fahrenheit was chosen.");
case (3) -> System.out.println("Kelvin was chosen.");
}
The condition that as long as the string "Quit" is input at any point the loop ends program ends.
A while loop on top with the condition that checks if the input "Quit" is entered will complete
everything but I keep failing most of the time because I get an error if a different data type is
inputted than what is being asked.
Someone told me my prompt isn't set up for this to receive "Quit" for my while loop. Can anybody
give me an example or teach me how I set this up?