home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / vol_300 / 353_02 / answers / ch01_1.cpp next >
C/C++ Source or Header  |  1992-01-19  |  227b  |  12 lines

  1.                               // Chapter 1 - Programming exercise 1
  2. #include <iostream.h>
  3.  
  4. main()
  5. {
  6.  
  7.    for (int index = 0 ; index < 3 ; index++) {
  8.       cout << "John Doe\n";
  9.       cout << "Jan 1, 1955\n\n";
  10.    }
  11. }
  12.