home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c021 / 7.img / EXAMPLES.ZIP / EX2.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1990-05-04  |  647 b   |  26 lines

  1. // ex2.cpp:   An interactive example
  2. // from Chapter 6 of Getting Started
  3. #include <iostream.h>
  4.  
  5. main()
  6. {
  7.    char name[16];
  8.    int age;
  9.  
  10.    cout << "Enter your name: ";
  11.    cin >> name;
  12.    cout << "Enter your age: ";
  13.    cin >> age;
  14.  
  15.    if (age < 21)
  16.       cout << "You young whippersnapper, " << name << "!\n";
  17.    else if (age < 40)
  18.       cout << name << ", you're still in your prime!\n";
  19.    else if (age < 60)
  20.       cout << "You're over the hill, " << name << "!\n";
  21.    else if (age < 80)
  22.       cout << "I bow to your wisdom, " << name << "!\n";
  23.    else
  24.       cout << "Are you really " << age << ", " << name << "?\n";
  25. }
  26.