21 lines
486 B
C++
21 lines
486 B
C++
|
#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;
|
||
|
|
||
|
|
||
|
|
||
|
}
|