home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
APDL Public Domain 1
/
APDL_PD1A.iso
/
program
/
c
/
c_plus_tut
/
examp_cpp
/
ch01_1
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1994-04-05
|
216 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";
}
}