// pgm5 -- reading in data from the keyboard using cin // 9/12/16 #include #include using namespace std; int main() { double celc; //prompt cout << "Please enter a degrees celcius: "; cin >> celc; double faran; faran = (9.0/5)*celc+32; cout << celc << " degrees C equals " << faran << " degrees F." << endl; int num1, num2; cout << "Enter two integers: "; cin >> num1 >> num2; cout << "You entered " << num1 << " and " << num2 << endl; return 0; }