home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng)
/
ProfitPress-MegaCDROM2.B6I
/
PROG
/
PASCAL
/
PASTUT24.ZIP
/
PTUTRSRC.ZIP
/
READARRY.PAS
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Pascal/Delphi Source File
|
1989-12-01
|
427 b
|
23 lines
(* Chapter 10 - Program 5 *)
program Read_Into_An_Array;
var Index : integer;
Place : array[1..10] of char;
begin
for Index := 1 to 5 do begin
Write('Enter up to 10 characters ');
Readln(Place );
Writeln('The data you entered was (',Place,')');
end;
end.
{ Result of execution
(The result depends on the data entered at the keyboard)
}