登录/
注册
题库分类
下载APP
帮助中心
首页
考试
搜题
APP
当前位置:
首页
>
查试题
>
int i=20; switch(i/10) {case 2:printf(“A”); case 1:printf(“B”);} 的输出结果为A。()
单选题
int i=20; switch(i/10) {case 2:printf(“A”); case 1:printf(“B”);} 的输出结果为A。()
A. 错误
B. 正确
查看答案
该试题由用户528****33提供
查看答案人数:23012
如遇到问题请
联系客服
正确答案
该试题由用户528****33提供
查看答案人数:23013
如遇到问题请
联系客服
搜索
相关试题
换一换
单选题
设窗体上有一个名为Text1的文本框和一个名为Command1的命令按钮,并有以下事件过程: Private Sub Command1_Click() x!=Val(Text1. Text) Select Case x Case Is<-10, Is>=20 Print "输入错误" Case Is<0 Print 20-x Case Is<10 Print 20 Case Is<=20 Prin
A.5 B.20 C.25 D.输入错误
答案
单选题
下列程序段的执行结果为 a=2 b=0 Select Case a Case 1 Select Case b Case 0 Print " * * 0 * *" Case 1 Print" * * 1 * *" End selec Case 2 Print " * * 2 * *" End Select
A.* * 0 * * B.* * 1 * * C.* * 2 * * D.0
答案
单选题
下列程序段的执行结果为()。 a=1 b=0 Select Case a Case 1 Select Case b Case 0 Print"**0**" Case 1 Print"**1**" End Select Case 2 Print"**2**" End Select
A.a=2,b=1 B.a=1,b=1 C.a=1,b=0 D.a=2,b=2
答案
单选题
下列程序段的执行结果为()。 m=1 n=1 Select Case m Case 1 Select Case n Case 0 Print "* * 0 * *" Case 1 Print " * * 1 * * " End Select Case 2 print " * * 2 * * " End Select
A.159 B.753 C.357 D.591
答案
单选题
下列程序段的执行结果为a=1b=0Select Case a Case 1 Select Case b Case 0 Print"**0**" Case 1 Print"**1**" End SelectCase 2 Print"**2**"End Select
A.* * 0 * * B.* * 1 * * C.* * 2 * * D.0
答案
单选题
下列程序的输出结果是 for(int i=0;i<5;i++){switch(i){ case 0:System.out.print(“B”);case 1:System.out.print(“e”);break;case 2:System.out.print(“g”);case 3:System.out.print(“!”);break;case 4
A.Beg!!! B.Beeg! C.Beg! D.Beeg!!!
答案
单选题
下面程序段执行结果为 x=Int(Rnd()+3) Select Case x Case 5 Print "excellent" Case 4 Print "good" Case 3 Print"pass" Case Else Print"fail" End Select
A.excellent B.good C.pass D.fail
答案
单选题
下面程序段执行结果为( )。 x=Int(Rnd()+3) Select Case x Case 5 Print "excellent" Case 4 Print "good" Case 3 Print"pass" Case Else Print"fail" End Select
A.virtual void vf(int) B.void vf(int)=0 C.virtual void vf(=0) D.virtual void yf(int){ }
答案
单选题
下面程序段执行结果为( )。 x=Iht(Rnd()+4) Select Case x Case 5 Print"excellent" Case 4 Print"good" Case 3 Print"paSS" Case Else Print "fail" End Select
A.excellent B.good C.pass D.fail
答案
主观题
下列程序段的运行结果为( )。 Dim x x = Int(Rnd) + 5 Select Case x Case 5 Print "优秀" Case 4 Print "良好" Case 3 Print "及格" Case Else Print "不及格" End Select
答案
热门试题
下面程序段显示的结果是. Dim x x=Int(Rnd)+5 Select Case x case 5 print "优秀" case 4 print "良好" case 3 print "通过" case else print "不通过" End select
下列程序的输出结果是 for(int i=0;i<5;i++){<br>switch(i){ case 0:System.out.print(“B”);<br>case 1:System.out.print(“e”);break;<br>case 2:System.out.print(“g”);<br>case 3:System.out.print(“!”);break;<br>case 4
下列程序段的执行结果为______。 x=Int (Rnd+4) Select Case x Case 5Print“优秀” Case 4Print“良好” Case 3Print“通过” Case ElsePrint“没有通过” End Select
下列程序段的执行结果为______。 Private Sub Command1_Click()a=1:b=1Select Case aCase 1 Select Case bCase 0 Print "你好!"Case 1 Print "Hello!" End SelectCase 2 Print"谢谢使用!"End Select End Sub
int i=20; switch(i/10) {case 2:printf(“A”); case 1:printf(“B”);} 的输出结果为A。()
程序运行后,单击窗体,屏幕显示的结果是()。 Private Sub Form_Click() num1="乙" num2=76 Select Case numl Case"甲" If num2>=80 Then Print"德艺优秀" Else If num2>=60 Then Print"德优秀,艺普通" End If Case"乙" If num2>=80 Then Print"德艺双佳"
程序运行后,单击窗体,屏幕显示的结果是( )。 Private Sub Form_Click() num1="乙" num2=76 Select Case numl Case"甲" If num2>=80 Then Print"德艺优秀" Else If num2>=60 Then Print"德优秀,艺普通" End If Case"乙" If num2>=80 Then Print"德艺双佳" Elselfnum2>=60 Then Print"德艺普通" End If End Select End Sub
执行下面的程序段后,变量c的值为()。 a=14 b=30 Slect Case b10 Case 0 C=a * 10 + b Case 1 To 9 C=a * 100+b Case 10 To 99 C=a * 1000 + b End Select print c
以下程序的输出结果是(选一项)inti;for(i=1;i<=5;i++){if(i%2==System.out.print(*);elsecontinue;System.out.print();}System.out.print($);*()
下面程序段的输出结果为A. int i=20; switch(i/10) { case 2:printf("A"); case 1:printf("B"); }
中国大学MOOC: 下面程序执行后,a的值为()。a=15Select Case a Case Is<10 a=a+5 Case 10 To 20 a=a+10 Case Else a=a-10End Select
下面程序段的输出结果为 Print"10+20=" PrintlO+20 Print"20+20=" PrinflO+20
阅读下列程序,输出结果分别为:a=10print(a>>2)print(a
阅读下面代码段:public class Test{ public static void main(String args[]){char ch;switch(ch){ case’a’:System.out.print("abc");break; case’b’:System.out.print("ab"); case’c’:System.out.print("c");break; default:System.out.print("abc");} }}不输出"abc"的ch值是( )
表达式 print("{:.2f}".format(20-2**3+10/3**2*5)) 的结果是
下列程序段的输出结果为 ______。 int a=2; switch (a) case 2:System.out.print("Value is 2.");case 3:System.out.println("Value is.");break;default:System.out.println("end");break;
下列程序段的输出结果为()。int a=2;switch(a)case 2:System.out.print("Value is 2.");case 3:System.out.println("Value is 3.");break;default:System.out.prinfln("end");break;
下列程序段的输出结果为【 】。int a=2;switch(a) { case 2:System.out.print("Value is 2."); case 3 :System.out.println("Value is 3.");break;default:System.out.prinfln("end");break; }
下面程序段的输出为()int a=15, b=10, c=20, d;d = a >12 ? b : c;switch(d){ case 5:printf(“%d,”, a); case 10:printf(“%d,”, b); case 20:printf(“%d,”, c); default:printf(̶
执行下面的程序段后,变量c的值为 a=14 b=30 Select Case b10Case 0 c=a * 10 + bCase 1 To 9 c=a*100+bCase 10 To 99 c=a*1000+b End Select Print c
购买搜题卡
会员须知
|
联系客服
免费查看答案
购买搜题卡
会员须知
|
联系客服
关注公众号,回复验证码
享30次免费查看答案
微信扫码关注 立即领取
恭喜获得奖励,快去免费查看答案吧~
去查看答案
全站题库适用,可用于E考试网网站及系列App
只用于搜题看答案,不支持试卷、题库练习 ,下载APP还可体验拍照搜题和语音搜索
支付方式
首次登录享
免费查看答案
20
次
微信扫码登录
账号登录
短信登录
使用微信扫一扫登录
获取验证码
立即登录
我已阅读并同意《用户协议》
免费注册
新用户使用手机号登录直接完成注册
忘记密码
登录成功
首次登录已为您完成账号注册,
可在
【个人中心】
修改密码或在登录时选择忘记密码
账号登录默认密码:
手机号后六位
我知道了
APP
下载
手机浏览器 扫码下载
关注
公众号
微信扫码关注
微信
小程序
微信扫码关注
领取
资料
微信扫码添加老师微信
TOP