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
答案是多少 按照什么顺序来计算 的 能把步骤说明一下吗?谢谢
參考答案:最后的结果是35
计算顺序
定义了A()数组,然后
for i=0 to 6
a(i)=i+1
next
中,给数组付值:
a(0)=1
a(1)=2
a(2)=3
a(3)=4
a(4)=5
a(5)=6
a(6)=7
在
for i=0 to 6
count=count+a(i)+1
next
中,想当于把a(i)所有的元素求和,并在7次计算中分别加了1。
最后结果是35