Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- int main(void)
- {
- int user_age = 0;
- cout << "Hello, my name is Hal!" << endl;
- cout << "What is your age?" << endl;
- cin >> user_age;
- cout << "Your age is " <<user_age << endl;
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement