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

  1. /* Demonstrates the switch statement. */
  2.  
  3. #include <stdio.h>
  4.  
  5. int main( void )
  6. {
  7.     int reply;
  8.  
  9.     puts("Enter a number between 1 and 5:");
  10.     scanf("%d", &reply);
  11.  
  12.     switch (reply)
  13.     {
  14.         case 1:
  15.             puts("You entered 1.");
  16.         case 2:
  17.             puts("You entered 2.");
  18.         case 3:
  19.             puts("You entered 3.");
  20.         case 4:
  21.             puts("You entered 4.");
  22.         case 5:
  23.             puts("You entered 5.");
  24.         default:
  25.             puts("Out of range, try again.");
  26.     }
  27.  
  28.     return 0;
  29. }
  30.  
  31.