#include <iostream> using namespace std; int main() { float a,b; cout << "Enter degrees celcius: "; cin >> a; cout << "Degrees Fahernheit: " << (a*1.8) + 32 << endl; system("PAUSE"); return 0; }