程序算法里面的问题 for i =1 to 20 step 2 for j = i to 20 step 3private sub command1_click()dim i,j,xfor i = 1 to 20 step 2x=0for j = i to 20 step 3x=x+1next jnext i text1.value=str(x)end sub请问j到底是怎么执行的?还有在这个步
来源:学生作业帮助网 编辑:六六作业网 时间:2024/12/22 23:45:13
程序算法里面的问题 for i =1 to 20 step 2 for j = i to 20 step 3private sub command1_click()dim i,j,xfor i = 1 to 20 step 2x=0for j = i to 20 step 3x=x+1next jnext i text1.value=str(x)end sub请问j到底是怎么执行的?还有在这个步
程序算法里面的问题 for i =1 to 20 step 2 for j = i to 20 step 3
private sub command1_click()
dim i,j,x
for i = 1 to 20 step 2
x=0
for j = i to 20 step 3
x=x+1
next j
next i
text1.value=str(x)
end sub
请问j到底是怎么执行的?
还有在这个步长什么的算法里,如果step后面数字是负的 到底能不能执行
程序算法里面的问题 for i =1 to 20 step 2 for j = i to 20 step 3private sub command1_click()dim i,j,xfor i = 1 to 20 step 2x=0for j = i to 20 step 3x=x+1next jnext i text1.value=str(x)end sub请问j到底是怎么执行的?还有在这个步
如果步长为负数,那么for i = 1 to 20,执行,但是死循环.
步长你可以理解为等差
譬如第一次i = 1,步长为2,那下一次就是i+2 = 3,下一次就是5,依此类推,明白了没有?