Temperature Converter
Create a temperature conversion program that will convert thefollowing to Fahrenheit:
Celsius
Kelvin
Newton
Your program should take a character which represents thetemperature to convert from and a value to be converted to usingthe following specification:
C - Celsius
K - Kelvin
N - Newton
In addition your program should take in the followingcharacter to exit the program:
X - eXit the program
The numeric input for your program should be of type double.The program will continue to input and convert temperatures untilthe 'X' character is input for the conversion type.
Your input should be in the following form:
60 C
This would convert the 60 degrees Celsius to Fahrenheit andshould output a value of 140
The following equations can be used to convert the differenttemperature types to Fahrenheit:
Kelvin - F = (K - 273.15) * 1.8000 + 32
Celsius - F = C * 9/5 + 32
Newton - F = N * 60 / 11 + 32
Required:
You are not allowed to use a do-while loop for thisprogram.
Use a while loop in conjunction with a switch statement.Please review the information on primed loops.
You must prime your loop with input from the keyboard beforethe while loop starts.
The program should continue converting temperatures until X isentered as a conversion type.
C++