vb中的一个问题,求详细解答:for i=1 to3 i=1+1 print i next i print"结果"i

用计算机运行下感觉for循环只循环了一次,求详细解答下思路
2024-12-15 00:55:19
推荐回答(2个)
回答1:

for i=1 to3
i=1+1
print i
next i
print"结果" i
你确定是这个程序吗

回答2:

i=1+1 改成i=i+1
感觉你是想得到这结果