GamerSK

Vypis ziakov

May 22nd, 2017
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pascal 0.31 KB | None | 0 0
  1. //Vypis ziaci
  2. program vypisziakov;
  3. {$APPTYPE CONSOLE}
  4. uses SysUtils;
  5. var f:text; udaj:string;
  6. begin
  7.   { TODO -oUser -cConsole Main : Insert code here }
  8.   assign(f,'ziaci.txt');
  9.   reset(f);
  10.   while not eof(f) do
  11.     begin
  12.       readln(f,udaj);
  13.       writeln(udaj);
  14.     end;
  15.   close(f);
  16.   readln;
  17. end.
Advertisement
Add Comment
Please, Sign In to add comment