下面各程序段中,()能在一行中输出五个&39;*&39;
13 查阅
下面各程序段中,()能在一行中输出五个&39;*&39;
A.I:=0;
repeat
write(&39;*&39;);
I:=I+1
until I=5
B.I:=0;
repleat
write(&39;*&39;)
until I=5
C.I:=0;
repeat
write(&39;*&39;);
I:=I-1
until I=5
D.I:=0;
repeat
writeln(&39;*&39;)
I:=I+2
until I=5
参考答案: