[求助]用Delphi编一个程序
用Delphi编一个程序 打印出 a
b a
c b a
b c b a
这样一个图形
2006-10-25 13:43
是
a
b a
c b a
b c b a
还是
a
b a
c b a
d c b a
?
program Project1;
{$APPTYPE CONSOLE}
uses
SysUtils;
var i,j:integer;
s:string;
begin
s:='';
for i:=1 to 10 do
begin
s:=chr(ord('a')+i-1)+' '+s;
for j:=10 downto i-1 do
write(' ');
writeln(s);
end;
readln(s);
{ TODO -oUser -cConsole Main : Insert code here }
end.

2007-01-24 15:04
2007-01-27 16:17
2007-01-29 19:30
不要这样说。
delphi本身还是很强大的。目前为止还没一个程序用其它语言能开发出来,而用Delphi开发不出来。

2007-02-07 23:55