Question: In Java, create a program that converts temperatures through user input Use the following conversions: Celcius to Farenheit: F = [C]*9/5+32 Celcius to Kelvin: K
In Java, create a program that converts temperatures through user input
Use the following conversions:
Celcius to Farenheit: F = [C]*9/5+32
Celcius to Kelvin: K = [C]+273.15
Farenheit to Celcius: C = ([F]-32)*5/9
Farenheit to Kelvin: K = ([F]+459.67)*5/9
Kelvin to Celcius: C = [K]-273.15
Kelvin to Farenheit: F = [K]*9/5-459.67
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
