下列程序段的执行结果为( )。 a=95 if a>60ThenI=1 if a>70Thenl=2 if a>80Thenl=3 if a>90ThenI=4 Print"I=";I
A.I=1
B.I=2
C.I=3
D.I=4
第1题:
下列程序的执行结果是(, )。 a=75 1f a>90 Then i=4 1f a>80 Then i=3 1f a>70 Then i=2 1f a>60 Then i=1 Print”i=”;i
A.i=1
B.i=2
C.i=3
D.i=4
第2题:
下列程序的执行结果是( )。 a =75 If a > 90 Then i=4 If a > 80 Then i=3 If a > 70 Then i=2 If a > 60 Then i=1 Print "i="; i
A.i=1
B.i=2
C.i=3
D.i=4
第3题:
下列程序的运行结果为()。 a = 75 If a > 60 Then i = 1 ElseIf a > 70 Then i = 2 ElseIf a > 80 Then i = 3 ElseIf a > 90 Then i = 4 End If Print "i="; i
A.i=1
B.i=2
C.i=3
D.i=4
第4题:
下列程序段的执行结果为 a=75 If a>60 Then I=1 If a>70 Then I=2 If a>80 Then I=3 If a<90 Then I=4 Print "I=";I
A.I=1
B.I=2
C.I=3
D.I=4
第5题:
下列程序段的执行结果为 a=95 If a > 60 Then degree=1 If a > 70 Then degree=2 If a > 80 Then degree=3 If a > 90 Then degree=4 Print"degree=";degree
A.degree=1
B.degree=2
C.degree=3
D.degree=4