VB for next语句for i=1 to 3for j=1 to ifor k=j to 3a=a+1next knext jnext ia的值最终为:我对for next语句的嵌套不是很理解.
来源:学生作业帮助网 编辑:作业帮 时间:2024/11/13 22:16:56
VB for next语句for i=1 to 3for j=1 to ifor k=j to 3a=a+1next knext jnext ia的值最终为:我对for next语句的嵌套不是很理解.
VB for next语句
for i=1 to 3
for j=1 to i
for k=j to 3
a=a+1
next k
next j
next i
a的值最终为:
我对for next语句的嵌套不是很理解.
VB for next语句for i=1 to 3for j=1 to ifor k=j to 3a=a+1next knext jnext ia的值最终为:我对for next语句的嵌套不是很理解.
自己一点点试, A在循环前应该赋初值 A=0
在A=A+1后放一条 debug.print i,j,k,a 可以得到如下结果.看看变化
i J K A
1 1 1 1
1 1 2 2
1 1 3 3
2 1 1 4
2 1 2 5
2 1 3 6
2 2 2 7
2 2 3 8
3 1 1 9
3 1 2 10
3 1 3 11
3 2 2 12
3 2 3 13
3 3 3 14