| 
 | 
вернуться в форум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 Послано  Sid 21 июл 2005 15:41 My program is just the same!!!! It's realy easy task! As easy as task №1000  |  
  | 
|