试题

试题 试卷

logo

题型:综合题 题类:模拟题 难易度:困难

浙江省温州市2016年3月普通高中学业水平信息技术模拟考试试卷

编写VB程序,实现如下功能:在文本框text1中输入自然数n,单击“产生n个随机数,并求和与最大数计算”按钮Command1,则在列表框List1中输出n个小于100的随机整数,并输出n个随机数的和与最大值,界面如图所示。

(1)、观察运行界面,选项中没有用到的控件是      
A、 B、 C、 D、
(2)、设计该窗体界面时,需要将窗体form1的属性设置为“最大随机数”。
(3)、请完善下列程序代码:

Private Sub Command1_Click()

Dim a(1 To 10) As Integer

Dim s As Integer

Dim max As Integer

n = Val(Text1.Text)

i = 1

Do While i <= n

   a(i) = Int(Rnd * 100)

   List1.AddItem Str(a(i))

   s = s + a(i)

        ①     

Loop

max = a(1)

For i = 2 To n

   If a(i) > max Then          ②  

Next i

List1.AddItem "和为:" +        ③     

List1.AddItem "最大值为:" + Str(max)

End Sub

供①②选填:A.n=n+1      B. i=i+1       C.max=a(i)     D.a(i)=max

①应选;②应选

空格③处应填写的代码为:

返回首页

试题篮