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

  1. /* Demonstrates the use of if statement with else clause */
  2.  
  3. #include <stdio.h>
  4.  
  5. int x, y;
  6.  
  7. int main( void )
  8. {
  9.     /* Input the two values to be tested */
  10.  
  11.     printf("\nInput an integer value for x: ");
  12.     scanf("%d", &x);
  13.     printf("\nInput an integer value for y: ");
  14.     scanf("%d", &y);
  15.  
  16.     /* Test values and print result */
  17.  
  18.     if (x == y)
  19.         printf("x is equal to y\n");
  20.     else
  21.         if (x > y)
  22.             printf("x is greater than y\n");
  23.         else
  24.             printf("x is smaller than y\n");
  25.  
  26.     return 0;
  27. }
  28.  
  29.