home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD2.mdf
/
c
/
tcpp
/
examples
/
intro21.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
C/C++ Source or Header
|
1990-06-10
|
261 b
|
18 lines
/* INTRO21.C - Beispiel aus Kapitel 4 der
Einführung */
#include <stdio.h>
int main()
{
int zahl = 0;
while (zahl++ <= 10)
{
if (zahl % 2 != 0)
continue;
printf("%d\n", zahl);
}
return 0;
}