1. 某VB应用程序的代码如下:

Function res(x As Integer,y As Integer,z As Integer)As Integer

  Dim temp As Integer

  If x>y Then temp=y Else temp=x

  If temp>z Then temp=z

  res=temp

End Function

Private Sub Command1_Click()

  Dim a As Integer,b As Integer,c As Integer

  a=5:b=3:c=7

  Text1.Text=Str(res(a,b,c))

End Sub

程序运行时,单击命令按钮Command1后,在文本框Text1中显示的内容是(  )

A. 0 B. 3 C. 5 D. 7
【考点】
运算符、基本运算与表达式; 常量、变量及变量的赋值; 过程与自定义函数;
【答案】

您现在未登录,无法查看试题答案与解析。 登录
单选题 普通
基础巩固
能力提升
变式训练
拓展培优
换一批