一个过程用来 输出1到10之间能被3整除的数并将结果保存在数组中,打印数组中各元素的值。请填空(1)和(2) Sub subname() Dim temp() Dim n as integer N=0 For i=1 to 10 If (1) then n=n+1 Next (2) n=0 For i=1 to 10 If (1) then n=n+1 temp(n)=i end if Next For i=1 ...