s=0

问题描述:

s=0
for i =1to10 step 2
s=s+1
i=i*2
next i
求循环结束后i与s的值
for m=0 to 7 step 3
for n=m-1 to m+1
next n
next m
求内层循环次数

22,3
9为什么啊1: i2 820 22 s 1 233 2: 外循环 0363个 内循环: 1 -3 2 -3 3 -3 所以内循环3+3+3=9