题目内容

以下( )不是Java的关键字。

A. TRUE
B. const
C. super
D. void

查看答案
更多问题

以下代码段执行后的输出结果为( )。intx=3; int y=8; System.out.println( y%x );

A. 0
B. 1
C. 2
D. 3

以下标识符中哪项是不合法的( )。

A. BigOlLong$223
B. utfint
C. $12s
D. 3d

执行下列程序代码后,f 的值是( )。boolean x=false;boolean y=true;boolean z = (x&&y)&&(!y);int f = z == false?1:2;

执行下列程序代码的输出结果是( )。int a=10;int i,j;i=++a;j=a--;System.out.printf("%d,%d,%d",a,i,j);

答案查题题库