下列程序的执行结果为().dim a(10),b(5) for i=1 to 10 a(i)=i next i for j=1 to 5 b(j)=j*20 next j

问题描述:

下列程序的执行结果为().dim a(10),b(5) for i=1 to 10 a(i)=i next i for j=1 to 5 b(j)=j*20 next j

应该是没有什么结果,因为没有输出语句
在内部数组a(1)=1 ……a(10)=10
b(1)=20 b(2)=40 ……b(5)=100