dim a(6)
for i=0 to 6
a(i)=i+1
next
for i=0 to 6
count=count+a(i)+1
next
response.Write count
count最後的輸出值35怎麼得來的
dim a(6)
for i=0 to 6
a(i)=i+1
next
for i=0 to 6
count=count+a(i)+1
next
response.Write count
count最後的輸出值35怎麼得來的
a(i)=i+1
就是 a(0)=0+1
a(1)=1+1
以此类催
底下的一样
上面的回答是很正确的
程序在开始时,执行如下循环:
for i=0 to 6 a(i)=i+1 next
那么数组A的值就为1,2,3,4,5,6,7。
然后再执行下一循环,实际上就是求
1+1,2+1,3+1,4+1,5+1,6+1,7+1的和。
可以求得2+3+4+5+6+7+8=35。