以下是关键代码,其他的我就不打了
dim i as Integer
dim max as integer
dim min as integer
dim temp as integer
'定义变量,i为循环变量,max为最大数,min为最小数,temp为每一次生成数时使用的临时变量
temp=Int(90*rnd()+10)
max=temp
min=temp
'生成第一个数,并且第一个数既是最大数又是最小数
for i=2 to 10 step 1
temp=Int(90*rnd()+10)
if temp > max then max=temp
if temp < min then min=temp
next i
label1.caption=max
label2.caption=min
把上面的代码复制到一个button的click事件,在窗体上画两个label然后运行就可以了,label1显示最大数,label2显示最小数。
说明:由于并没有要求找出最大最小是第几个元素,所以不使用数组。
温馨提示:答案为网友推荐,仅供参考