[单项选择题] 下面程序段的输出结果为 public class Test {public static void main(String args[]){ boolean a,b,c; a=

[单项选择题] 下面程序段的输出结果为 public class Test {public static void main(String args[]){ boolean a,b,c; a=,第1张

[单项选择题] 下面程序段的输出结果为 public class Test {public static void main(String args[]){ boolean a,b,c; a=

[单项选择题] 下面程序段的输出结果为 public class Test {public static void main(String args[]){ boolean a,b,c; a=(3<5); b=(a==true); System.out.printin( "a="+a+"b="+b) ; c-(b==false); System.out.println(b="+b+"e="+c) ;} }

A.a=true b=falseb=true c=false

B.a=true b=falseb=true c=true

C.a=true b=trueb=true c=false

D.a=false b=falseb=true c=false

正确答案:

C

参考解析:

本题考查关系运算符<和==。题目中a=(3<5);比较3和5的大小,因为3<5,返回true给a:b=(a==true);判断a是否为真,因为a确实为真,返回true给b; c =(b==false);判断b是否为假,因为b不为假,返回false给c。最后结果a=true,b==true, b=true,c=false,选项C正确。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5471173.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-12
下一篇 2022-12-12

发表评论

登录后才能评论

评论列表(0条)

保存