option base 1定义数组的默认下标从1开始,那么t=array(34,81,127,192,16,73,49,50),得到t(1)=34,t(2)=81,t(3)=127,t(4)=192,...,t(8)=50,ubound(t)取t数组下标的上限,也就是8,这样for循环为for i=2 to 8if t(i)n=t(i)endifprint n打印数组的最小元素n