#include <iostream>
usingnamespace std;
int main()
{
char temp;
char F, C, K, N, X;
float celsius;
float fahrenheit;
float kelvin;
float newton;
//Formulas
celsius = (fahrenheit - 32) * 5 / 9;
kelvin = (fahrenheit - 32) * 5 / 9 + 273.15;
cout << "This temperature conversion program converts other temperatures to Fahrenheit" << endl;
cout << "The temperature types are:" << endl;
cout << "C - Celsius " << endl;
cout << "K - Kelvin " << endl;
cout << "N - Newton " << endl;
cout << "X - Exit " << endl;
cout << "To use the converter you must input a value and one of the temperature types. " << endl;
cout << "For example 32 C converts 32 degress from Celsius to Fahrenheit " << endl;
cout << "Please enter a value and it's type to be converted " << endl;
cin >> temp;
cout << "Tn Celsius the temperature is " << celsius << endl;
cout << "In Kelvin the temperature is " << kelvin << endl;
return 0;
}