下列VBA程序段的执行结果是( )。 A=75:K=0 If A<90 then K=K+1 If A>80 then K=K+1 If A<70 then K=K+l If A>60 then K=K+1

admin2020-06-25  18

问题 下列VBA程序段的执行结果是(    )。
    A=75:K=0
    If A<90 then K=K+1
    If A>80 then K=K+1
    If A<70 then K=K+l
    If A>60 then K=K+1
    MsgBox K

选项 A、2
B、1
C、3
D、4

答案A

解析 程序从上往下顺序执行,第1个If语句条件成立执行,K=1;执行第2个If语句,条件不成立;执行第3个If语句,条件不成立;执行第4个If语句,条件成立,k=2,故最终输出K的值为2。故本题选择A选项。
转载请注明原文地址:https://kaotiyun.com/show/XLcp777K
0

最新回复(0)