提示说操作符/操作类型不匹配
clear?"随机产生的整数并排序:"
c=10
dime a(10) &&定义数组a,来存放输入的10个数
for i=1 to 10 &&随机产生10个随机数
b=rand()*100
if c<b
a(i)=int(b)
endif
endfor
for m=1 to 9
for n=m+1 to 10
if a(m)<a(n)
t=a(m)
a(m)=a(n)
a(n)=t
endif
endfor
?a(m)
endfor
?a(10)
return
运行时提示红色字体处操作符/操作数类型不匹配,怎么办??