:
This message was edited by lajevardi at 2006-5-5 23:27:45
: thanks thanks thanks..
: buti think there's an extra line,
: your code output:
:
: 4
: 3 4
: 2 3 4
: 1 2 3 4
:
: /*i'm so tired and confused*/
:
:
:
for i := N downto 1 do
begin
for j := 1 to i do
write(' ');
for j := i to N do
write(j, ' ');
writeln;
end;