home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Megaware 1
/
Megaware Volume 1.iso
/
programg
/
c-tutor
/
answers
/
ch01_1.cpp
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1990-07-21
|
227 b
|
12 lines
// Chapter 1 - Programming exercise 1
#include "iostream.h"
main()
{
for (int index = 0 ; index < 3 ; index++) {
cout << "John Doe\n";
cout << "Jan 1, 1955\n\n";
}
}