0433t3y6

From Codemotion
Jump to: navigation, search

0433t3y6

Source

  1. #include <cstdlib>
  2. #include <iostream>
  3.  
  4. using namespace std;
  5.  
  6. int main(int argc, char *argv[])
  7. {
  8.     string name;
  9.     int age;
  10.     int year;
  11.  
  12.     cout << "What's your name?" << endl;
  13.     cin >> name;
  14.     cout << "Your name is " << name << "." << endl;
  15.     cout << "What is your age?" << endl;
  16.     cin >> age;
  17.     cout << "What year are we?" << endl;
  18.     cin >> year;
  19.     cout << "You were born in " << year-age << "." <<endl;
  20.     system("PAUSE");
  21.     return EXIT_SUCCESS;
  22. }
Personal tools