home *** CD-ROM | disk | FTP | other *** search
/ C Programming Starter Kit 2.0 / SamsPublishing-CProgrammingStarterKit-v2.0-Win31.iso / tyc / list13_5.c < prev    next >
C/C++ Source or Header  |  1993-10-16  |  575b  |  28 lines

  1.  /* Demonstrates the switch statement. */
  2.  
  3.  #include <stdio.h>
  4.  
  5.  main()
  6.  {
  7.      int reply;
  8.  
  9.      puts("Enter a number between 1 and 5, 0 to exit:");
  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.