填空题(每题2分,计20分)
1.在Visual Basic中可以建立( )菜单和( )菜单。
2.建立打开文件、颜色对话框所使用的方法分别为( )和( )。如果使用action属性,则应把该属性的值分别设置为( )和( )。
3.数学表达式 的VB算术表达式为( )。
4.表达式Ucase(right(“abcdefgh”,5)的值是( )。
5.以下程序的功能是:从键盘上输入学生的考试分数,统计并输出最高分数和最低分,当输入负数时结束输入,输出结果。请填空。
Private Sub Form_click()
Dim x As Single, amax As Single, amin As Single
x = InputBox("enter a score")
amax = x
amin = x
Do While x > 0
If ( ) Then
amax = x
End If
If ( ) Then
amin = x
End If
x = InputBox("enter a score")
Loop
Print "max="; amax, "min="; amin
End Sub
1. 下拉式 弹出式
2. Showopen showcolor 1 3
3. Sqr(x)/(2*a)+3^2-3*x
4. DEFGH
5. amax<x amin>x
2015年全国职称计算机考试教材(2007模 .. 定价:¥225 优惠价:¥213 更多书籍 | |
全国职称计算机考试速成过关系列套装:W .. 定价:¥133 优惠价:¥133.0 更多书籍 |