Write a program to perform the conversion between Celsius and Fahrenheit. In your
program, it should contain the following two methods:
/**Convert from Celsius to Fahrenheit**/
public static double celsiusToFahrenheit (double celsius)
/**Convert from Fahrenheit to Celsius **/
public static double fahrenheitToCelsius (double fahrenheit)
formula
Formula to convert Fahrenheit degrees to Celsius:
C = (F - 32) x 5/9
where C = Celsius and F = Fahrenheit
Formula to convert Celsius degrees to Fahrenheit:
F = (C x 9/5) + 32
where C = Celsius and F = Fahrenheit
(Hint: Using for loops and methods to display the above output.)
救命,我努力了2天都写不出结果T.T




