
20.12.2011, 22:32
|
Продвинутый
|
|
Регистрация: 13.02.2006
Адрес: Магнитогорск
Сообщения: 669
Репутация: 14745
|
|
Код:
...
var
line: string;
begin
...
AssignFile(filename, input);
Reset(input);
while not eof(input) do begin
Readln(line);
Showmessage(line);
end;
CloseFile(input);
...
end;
|