using namespace std;
int main()
{
float ftemp, ctemp;
cout << "Enter Temperature In Fahrenheit : ";
cin >> ftemp;
ctemp = (ftemp - 32)*(5 / 9);
cout << "Temperature In Celcius : " << ctemp;
cout << "\n\n";
system("pause");
return 0;
}
0 comments:
Post a Comment