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 >
Wrap
C/C++ Source or Header
|
1993-10-16
|
575b
|
28 lines
/* Demonstrates the switch statement. */
#include <stdio.h>
main()
{
int reply;
puts("Enter a number between 1 and 5, 0 to exit:");
scanf("%d", &reply);
switch (reply)
{
case 1:
puts("You entered 1.");
case 2:
puts("You entered 2.");
case 3:
puts("You entered 3.");
case 4:
puts("You entered 4.");
case 5:
puts("You entered 5.");
default:
puts("Out of range, try again.");
}
}