home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / tcpp / examples / intro21.c < prev    next >
Encoding:
C/C++ Source or Header  |  1990-06-10  |  261 b   |  18 lines

  1. /* INTRO21.C - Beispiel aus Kapitel 4 der
  2.                Einführung */
  3.  
  4. #include <stdio.h>
  5.  
  6. int main()
  7. {
  8.    int zahl = 0;
  9.    while (zahl++ <= 10)
  10.    {
  11.       if (zahl % 2 != 0)
  12.          continue;
  13.       printf("%d\n", zahl);
  14.    }
  15.  
  16.    return 0;
  17. }
  18.