s=0
for i=1 to 10
x=int(rnd*100) '随机产生[0,99]间的数
s=s+x '累加求和
print x ; '输出
next i
a=s/10 '平均
print "10个随机数的平均值" ;a
比如 3个text 或者 5个text
Me.Caption = (text1+text2+text3)/3
Me.Caption = (text1+text2+text3+text4+text5)/5
太笼统了
具体点
具体怎么求?