home *** CD-ROM | disk | FTP | other *** search
/ The Devil's Doorknob BBS Capture (1996-2003) / devilsdoorknobbbscapture1996-2003.iso / Dloads / OTHERUTI / TCPP30-3.ZIP / EXAMPLES.ZIP / EX2.CPP < prev    next >
C/C++ Source or Header  |  1992-02-18  |  711b  |  30 lines

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