I need a java program that will repeatedly read temperatures in Fahrenheit and convert them to Celsius until a temperature > 212 F is entered. I really need this, please, and thank you. mbnumba14@yahoo.com(email address)
Here is my java program: import java.util.*; // Converter.java public class Converter { public static void main(String[] args) { Scanner sc = new Scanner(System.in); System.out.print("Enter temp: "); int temp = sc.nextInt(); System.out.println(convertToC(temp)); } public static int convertToC(int temp) { return ((temp - 32 ) * 5/9); } } .