网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)

下列程序段,运行后输出的内容是 a=2 c=1 c=c+a If c<10 Then Print c Else Print a End If

A.3

B.7

C.9

D.6


参考答案

更多 “ 下列程序段,运行后输出的内容是 a=2 c=1 c=c+a If c<10 Then Print c Else Print a End IfA.3B.7C.9D.6 ” 相关考题
考题 下列程序段,在运行时最后输出的内容是a=2c=1AAA:c=c + aIf c 10 ThenPrint cGoTo AAAElsePrint "10以内的奇数显示完毕"End If ( )。A.3B.7C.9D.10以内的奇数显示完毕

考题 已知x代表某个百分制成绩,下列程序段用于显示对应的五级制成绩,正确的是( )A.If x>=60 Then Print"及格" Else If x>=70 Then Print"中" Else If x>=80 Then Print"良" Else If x>=90 Then Print"优" Else Print"不及格" End IfB.If x<90 Then Print"良" Else If x<80 Then Print"中" Else If x<70 Then Print"及格" Else If x<60 Then Print"不及格" Else Print"优" End IfC.If x>=90 then Print"优" Else If x>=80 Then Print"良" Else If x>=70 Then Print"中" Else If x>=60 Then Print"及格" Else Print"不及格" End If End SelectD.Select Case x Case x>=90 Print"优" Case x>=80 Print"良" Case x>=70 Print"中" Case x>=60 Print"及格" Case Else Print"不及格"

考题 下列程序段,在运行时,最早输出的内容是 a=2 C=1 AAA: C=C+a If c<10 Then Print c CoTo AAA E1se Print"10以内的奇数显示完毕。 End IfA.3B.7C.9D.6

考题 下列程序段,在运行时最后输出的内容是 a=2 c=1 AAA: c=c+a If c<10 Then Print c GoTo AAA Else Print "10以内的奇数显示完毕" End IfA.3B.7C.9D.10以内的奇数显示完毕

考题 下列程序段,在运行时最早输出的内容是 a=2 c=1 AAA: c=c + a If c<10 Then Print c GoTo AAA Else Print"10以内的奇数显示完毕。" End IfA.3B.7C.9D.6

考题 下列程序段,在运行时最后输出的内容是 a=2 c=3 AAA: c=c * a If c〈10 Then Print c GoTo AAA Else Print“10以内的奇数显示完毕” End IfA.3B.7C.9D.10以内的奇数显示完毕

考题 下列程序段,在运行时最后输出的内容是 a=2 c=1 AAA: c=c + a If c<10 Then Print c GoTo AAA Else Print "10以内的奇数显示完毕" End IfA.3B.7C.9D.10以内的奇数显示完毕

考题 下列程序段,在运行时最后输出的内容是 a=2 c=1 AAA: c=c + a If c<10 Then Print c GoTo AAA Else Print "10以内的奇数显示完毕" End IfA.3B.7C.9D.10以内的奇数显示完毕

考题 有以下程序段: m=5 sum=0 while m<10: sum=sum+m m=m+1 print(sum) 程序运行后输出的结果为: ()A.45B.26C.56D.35