school/cs142/lab02/temperature.cpp

21 lines
486 B
C++
Raw Normal View History

2016-04-06 20:45:34 -07:00
#include <iostream>
using namespace std;
int main() {
double temperature;
cout << "please enter a temperature in degress Fahrenheit:" << endl;
cin >> temperature;
double celsius = (temperature-32) * 5/9;
cout << "This is Fahrenheit as an int:" << endl;
cout << (int) temperature << endl;
cout << "This is Celsius as a double:" << endl;
cout << celsius << endl;
cout << "This is Celsius as an int:" << endl;
cout << (int) celsius << endl;
}