This needs to be done in Java Write an application that prints out the temperatures from 0 - 50 degrees Celsius and the converted the Fahrenheit values. Use a while counter controlled loop. Include column headings and correct column spacing. SAMPLE OUTPUT: Celsius Fahrenheit 0 32.0 1 33.8 2 35.6 3 37.4
This needs to be done in Java
Write an application that prints out the temperatures from 0 - 50 degrees Celsius and the converted the Fahrenheit values. Use a while counter controlled loop. Include column headings and correct column spacing.
SAMPLE OUTPUT:
Celsius Fahrenheit
0 32.0
1 33.8
2 35.6
3 37.4
1. Start
2. Print column headings: "Celsius\t\tFahrenheit"
3. Initialize a variable celsius to 0
4. While celsius is less than or equal to 50:
a. Calculate fahrenheit using the formula: fahrenheit = celsius * 9.0 / 5.0 + 32.0
b. Print formatted output with celsius and fahrenheit values, separated by a tab and newline
c. Increment celsius by 1
5. End loop
6. End
Step by step
Solved in 4 steps with 3 images