home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / C / SASC6571.LZX / tutorial / 2_1_2.c < prev    next >
Encoding:
C/C++ Source or Header  |  1997-03-27  |  221 b   |  13 lines

  1. #include "stdio.h"
  2.  
  3. main( )
  4. {
  5.     int num;
  6.     
  7.     printf("Enter any whole number: ");
  8.     scanf("%d", &num);
  9.     
  10.     if((num%2)==1) printf("The number is odd.\n");
  11.     if((num%2)==0) printf("The number is even.\n");
  12. }
  13.