A-A+
执行下列代码段之后 变量b的值为______。 public class ex40 { pu
问题详情
执行下列代码段之后,变量b的值为______。 public class ex40 { public static void main(String[] args) { byte x=5; byte y=5; byte c=10; boolean b; b-c<x<<y; System.out.println (b); } }
A.1
B.0
C.false
D.true请帮忙给出正确答案和分析,谢谢!
参考答案
正确答案:D