home *** CD-ROM | disk | FTP | other *** search
/ Collection of Hack-Phreak Scene Programs / cleanhpvac.zip / cleanhpvac / PASSRC.ZIP / READSTRG.PAS < prev    next >
Pascal/Delphi Source File  |  1991-02-04  |  408b  |  23 lines

  1.                                 (* Chapter 10 - Program 5 *)
  2. program Read_A_String;
  3.  
  4. var Index : byte;
  5.     Field : string[10];
  6.  
  7. begin
  8.    for Index := 1 to 5 do begin
  9.       Write('Enter up to 10 characters ');
  10.       Readln(Field);
  11.       Writeln('The data you entered was (',Field,')');
  12.    end;
  13. end.
  14.  
  15.  
  16.  
  17.  
  18. { Result of execution
  19.  
  20. (The output depends on the data entered at the keyboard)
  21.  
  22. }
  23.