单项选择题

下列代表十六进制整数的是______。

A.0XA6
B.1234L
C.-840
D.0144
<上一题 目录 下一题>
热门 试题

单项选择题
下面程序段的输出结果是______。 public class Test public static void main(String args[]) int x,y; x=(int)Math.sqrt(5) 2+(int)Math.random()*5 2; y=(int)Math.sqrt(3) 2+(int)Math.random()*3 2; if(x>y) System.out.println( x>y ); elseif(x= =y) System.Out.println( x=y ); else System.out.println( x<y );
A.x>y
B.x=y
C.x<y
D.编译错误
单项选择题
按运算符的功能划分,运算符 += 的类型是______。
A.算术运算符
B.关系运算符
C.逻辑运算符
D.赋值运算符
相关试题
  • 本题的功能是定义自己的组件类。窗口中排布...
  • 本题的功能是对下拉菜单项的操作,包括添加...
  • 本题定义了一个求两个数的最大值的方法max...
  • 下列程序的功能是在监控台上每隔一秒钟显示...
  • 阅读下列代码后 public class Person i...