home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Education Master 1994 (4th Edition)
/
EDUCATIONS_MASTER_4TH_EDITION.bin
/
files
/
progscal
/
ptutor2b
/
casedemo.pas
< prev
next >
Wrap
Pascal/Delphi Source File
|
1988-01-15
|
634b
|
20 lines
(* Chapter 4 - Program 8 *)
program Demonstrate_Case;
var Count : integer;
begin (* main program *)
for Count := 0 to 8 do begin
Write(Count:5);
case Count of
1 : Write(' One'); (* Note that these do not have *)
2 : Write(' Two'); (* to be in consecutive order *)
3 : Write(' Three');
4 : Write(' Four');
5 : Write(' Five');
else Write(' This number is not in the allowable list');
end; (* of case structure *)
Writeln;
end; (* of Count loop *)
end. (* of main program *)