//FILE: Temperate.cpp // CONVERSION OF CELSIUS TO FAHRENHEIT TEMPERATURE #include #include using namespace std; int main() { int celsius; float fahrenheit; cout << setw(10) << "Celsius" << setw (15) << "Farhrenheit" << endl; cout << setiosflags(ios::showpoint); for( celsius=20; celsius >=-20; celsius -=5) { fahrenheit=1.8*celsius +32; cout<< setw(7) << celsius << setw(14) << setprecision(2) << fahrenheit << endl; }//end for return 0; }