Advertisement
emaansahmed

Assignment #1 Pt. 1

Jan 25th, 2015
239
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.26 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main(void)
  6. {
  7.     int user_age = 0;
  8.     cout << "Hello, my name is Hal!" << endl;
  9.     cout << "What is your age?" << endl;
  10.     cin >> user_age;
  11.     cout << "Your age is " <<user_age << endl;
  12.     return 0;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement