Advertisement
Guest User

C++ TuT Ep.1

a guest
Mar 23rd, 2014
127
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.  
  3. using namespace std;
  4.  
  5. int main() {
  6.     int iAge;
  7.  
  8.     cout << "How old are you?" << endl << endl;
  9.     cin >> iAge;
  10.     cout << "you are " << iAge << "." << endl << endl;
  11.     system("PAUSE");
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement