如果在北京时间7点50分运行以下代码,程序的输出结果是( )。 SubProcedure() If Hour(Time())>=8And Hour(Time())<12Then Debug.Print"上午好!" ElseIf Hour(Time()

admin2018-09-25  22

问题 如果在北京时间7点50分运行以下代码,程序的输出结果是(    )。
SubProcedure()
If Hour(Time())>=8And Hour(Time())<12Then
Debug.Print"上午好!"
ElseIf Hour(Time())>=12And Hour(Time())<18Then
Debug.Print"下午好!"
Else
Debug.Print"欢迎下次光临!"
End If
End Sub

选项 A、欢迎下次光临!
B、上午好!
C、下午好!
D、无输出

答案A

解析 本题考查的是条件语句的多分支结构。Time()函数获取当前时间,}tour()函数获取当前时间的小时数。北京时间7点50分,经过函数Hour(Time())计算返回7,所以进入条件语句的最后一个分支并执行该分支的语句。
转载请注明原文地址:https://kaotiyun.com/show/3VMp777K
0

最新回复(0)