填空题

在窗体中添加命令按钮cmd,并编写如下程序:
Funtion panduan(x As Integer,y As Integer) As Integer
panduan=IIF(x>y,x,y)
End Function
Private Sub cmd_click()
Dim a As Integer,b As Integer
a=4
b=7
MsgBox panduan( a, b)
End Sub
打开窗体单击命令按钮,消息框中输出的结果为 【10】

【参考答案】

G
热门 试题