|  | 
|  | 
| back to board | I got AC. This is my program >This is my solution:
 --------------program-----------------
 var n:integer; i:integer;
 begin
 readln(n);
 if n=0 then writeln(0) else  begin
 writeln('0'); writeln('X'); writeln('*');
 for i:=1 to n-1 do  begin
 writeln(i); writeln('+');
 writeln('X'); writeln('*'); end;
 writeln(n); writeln('+'); send;
 end.
 ---------------------------------------
The tests are really messed up !!!Re: I got AC. This is my program Posted by Sid  21 Jul 2005 15:41My program is just the same!!!! It's realy easy task! As easy as task №1000 | 
 | 
|