|
2005年4月等级考试二级VB真题(附答案)(6) Microsoft Visual Basic Programming 然后编写如下事件过程: Private Sub Command1_Click() Open "d:\temp\outf.txt" For Output As #1 For i = 1 To Len(Text1.Text) c = Mid(Text1.Text, i, 1) If c >= "A" And c <= "Z" Then Print #1, LCase(c) End If Next i Close End Sub 程序运行后,单击命令按狃,文件outf.txt中的内容是: A)MVBP B)mvbp C)M V B P D)m v b p (34)在窗体上画一个名称为Command1的命令按钮,然后编写如下程序: Dim SW As Boolean Function func(X As Integer) As Integer If X < 20 Then Y = X Else Y = 20 + X End If func = Y End Function Private Sub Command1_Click() Dim intNum As Integer intNum = InputBox("") If SW Then Print func(intNum) End If End Sub Private Sub Form_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single) SW = False End Sub Private Sub Form_MouseUp(Button As Integer, Shift As Integer, X As Single, Y As Single) SW = True End Sub 程序运行后,单击命令按钮,将显示一个输入对话框,如果在对话框中输入25,则程序的执行结果是: A)输出0 B)输出25 C)输出45 D)无任何输出 (35) 设有如下通用过程: Public Sub fun(a() As Integer, x As Integer) For i = 1 To 5 x = x + a(i) Next End Sub 在窗体上画一个名称为Text1的文本框和一个名称为Command1的命令按钮,然后编写如下事件过程: Private Sub Command1_Click() Dim arr(5) As Integer, n As Integer For i = 1 To 5
|