[单项选择题] 在执行以下程序时,为了使输出结果为t=4,则给a和b输入的值应当满足的条件是______。
a=InputBox(“a=”)
b=InputBox(“b=”)
s=1
t=1
If a>0 Then
s=s+1
End If
If a>b Then
t=s+1
Else
If a=b Then
t=5
Else
t=2*s
End If
End If
Print t
A.a>b
B.a<b<0
C.0<a<b
D.0>a>b
[单项选择题] 在执行以下程序时,为了使输出结果为t=4,则给a和b输入的值应当满足的条件是______。
a=InputBox(“a=”)
b=InputBox(“b=”)
s=1
t=1
If a>0 Then
s=s+1
End If
If a>b Then
t=s+1
Else
If a=b Then
t=5
Else
t=2*s
End If
End If
Print t
A.a>b
B.a<b<0
C.0<a<b
D.0>a>b
C
本题注意掌握If语句的使用。如果a>O,执行s=s+1,使s的值为2;当a<b时,执行t=2*s,即t=2*2=4。所以,为了使输出结果为t=4,则给a和b输入的值应当满足的条件是0<a<b。
VIP截止日期:2025-01-01 02:02:31
←请使用支付宝扫码支付VIP截止日期:2025-01-01 02:02:31
←请使用微信扫码支付