home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD2.mdf
/
c
/
tutorial
/
cpptutor
/
answers
/
ch01_1.cpp
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
C/C++ Source or Header
|
1994-05-15
|
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";
}
}