home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c025 / 1.ddi / SWITCH.C < prev    next >
Encoding:
Text File  |  1985-01-24  |  421 b   |  19 lines

  1. main()    /* switch.c -- illustrates use of switch, case, default and break statements */
  2. {
  3. char c;
  4. puts("Type in 1, 2 or 3 or any other character");
  5. c = getchar();
  6. switch (c)
  7.     {case '1':
  8.     puts("\nYou're in case 1");
  9.     case '2':
  10.     puts("\nYou're in case 2");
  11.     break;
  12.     case '3':
  13.     puts("\nYou're in case 3");
  14.     break;
  15.     default:
  16.     puts("\nYour pressed something other than 1, 2 or 3");}
  17. puts("End of switch");
  18. }
  19.