home *** CD-ROM | disk | FTP | other *** search
/ Sams Teach Yourself C in 21 Days (6th Edition) / STYC216E.ISO / mac / Examples / Day12 / Ex12_07.c < prev    next >
C/C++ Source or Header  |  2002-05-04  |  343b  |  21 lines

  1. /*Count the number of even numbers between 0 and 100. */
  2.  
  3. #include <stdio.h>
  4.  
  5. int main( void )
  6. {
  7.    int x = 1;
  8.    static int tally = 0;
  9.  
  10.    for (x = 0; x < 101; x++)
  11.    {
  12.       if (x % 2 == 0)  /*if x is even...*/
  13.       tally++;  /*add 1 to tally.*/
  14.  
  15.    }
  16.  
  17.    printf("There are %d even numbers.\n", tally);
  18.    return 0;
  19. }
  20.  
  21.