ENG  RUSTimus Online Judge
Online Judge
Problems
Authors
Online contests
About Online Judge
Frequently asked questions
Site news
Webboard
Links
Problem set
Submit solution
Judge status
Guide
Register
Update your info
Authors ranklist
Current contest
Scheduled contests
Past contests
Rules
back to board

Discussion of Problem 1102. Strange Dialog

Question about reading data.
Posted by Akshin Salimov 15 Apr 2005 00:41
Can I read data this kind:

procedure readdata;
var
s:string;
n:integer;

begin
  readln(n);
  for i:=1 to n do
  begin
    readln(s);
    check(s);
  end;
end;
Re: Question about reading data.
Posted by Помпей 6 Mar 2006 19:42
No length of the string is too big

Edited by author 06.03.2006 20:56