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 1089. Verification with the Dictionary

Empty lines problem
Posted by Agh 13 Dec 2002 21:41
I get AC but not easy and as i understand the main problem for
people with this task is input.

Here is my input code. Hope it'll be usefull
------------
<read vocabulary>

while not eof do
begin
  readln(s);
  if (s = '') and eof then break;

  <process string>
  writeln;
end;

writeln(errorsCnt);
------------