Advertisement
adambkehl

Assignment #1 (1/4) - Page 63 #4

Feb 22nd, 2019
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.20 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main()
  5. {
  6.     int age;
  7.     cout << "Enter your age: ";
  8.     cin >> age;
  9.     cout << "Your age in months is " << age * 12 << "." << endl;
  10.  
  11.     cin.get(), cin.get();
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement