Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //Vypis ziaci
- program vypisziakov;
- {$APPTYPE CONSOLE}
- uses SysUtils;
- var f:text; udaj:string;
- begin
- { TODO -oUser -cConsole Main : Insert code here }
- assign(f,'ziaci.txt');
- reset(f);
- while not eof(f) do
- begin
- readln(f,udaj);
- writeln(udaj);
- end;
- close(f);
- readln;
- end.
Advertisement
Add Comment
Please, Sign In to add comment