1 下面的程序运行后,输出的结果是:
private sub command_click()
x=0
for j=1 to 5
x=x-1;y=0
for k=1 to 5
x=x+1;y=y+1
next k; next j
print x; y
end sub
A 1 5 B 20 5 C 20 10 D 10 5
2 在窗体上画一个命令按钮,然后编写如下事件过程:
private sub command_click()
A=0
for m=1 to 10
A=A+1; B=0
for j=1 to 10
A=A+1; B=B+2
next j; next m
print A; B
end sub
程序运行后,输出结果是:
A 10 20 B 20 110 C 110 20 D 200 110
各位高手帮帮忙呀~~~~说一下它是怎么循环的~~~~~~~详细些呀~我菜
谢谢~~~~~~~~
|