更多"下列语句输出结果为( )。 public class test "的相关试题:
[单项选择]下列语句输出结果为( )。
public class test
public static void main(String args[])
byte b=011;
System.out.prinfin(b);
A. B
B. 11
C. 9
D. 011
[单项选择]下列语句输出结果为( )。 public class test public static void main (String args[ ]) int m=20,n=10; System.out.println((- -m)*(n+ +));
A. 200
B. 190
C. 209
D. 220
[单项选择]下列语句输出结果为( )。 public class test public static void main (String args[ ]) int a=23,b=8,c=5; int e=a%(b%c); System.out.println(e);
A. 0
B. 1
C. 2
D. 3
[单项选择]下列语句输出结果为( )。 public class test public static void main(String args[ ]) int x=10,y=8; boolean b=true; System.out.println(x>0&&x<y||b);
A. true
B. false
C. 1
D. 0
[单项选择]下列语句输出结果为( )。 public class test public static void main (String args[]) int x=10,y=9; boolean b=true; System.out.println(x<y||!b);
A. true
B. false
C. 1
D. 0
[单项选择]下面程序的输出结果是
public class Test
public static void main(String[] args)
int[]array=2,4,6,8,10;
int size=6;
int result=-1:
try
for(int i=0;i<size&&result==-1;i++)
if(array[i]==20)result=i;
catch(ArithmeticException e)
System.out.println("Catch---1");
catch(ArrayIndexOutOfBoundsException e)
System.out.println("Catch---2");
catch(Exception e)
System.out.println("Catch---3");
A. Catch---1 B) Catch一--2 C) Catch---3 D) 以下都不对
[单项选择]下面程序段的输出结果是
public class Test
public static void main(String args[])
int[] a=new int[11];
int[] p=new int[4];
int k=5;
for(int i=1;i<=10;i++)
a[i]=i;
for(int i=l;i<=3;i++)
p[i]=a[i*i];
for(int i=1;i<=3;i++)
k=k+p[i]*2;
System.out.println(k);
A. 37
B. 31
C. 33
D. 35
[单项选择]下列代码的执行结果是( )。
public class Test
public static void main(String args[ ])
System.out.println(5/2);
System.out.println(100%3.0);
A. 2和1
B. 2和1.0
C. 2.5和1
D. 2.5和1.0
[单项选择]下列程序的输出结果是( )。 public class Test
public static void main(String[] args)
char a1 = 'B', a2 = 'c';
if(a1+1<a2) ++a1;
System. out. println(a1);
A. B
B. b
C. C
D. c
[单项选择]下列程序的输出结果是( )。
public class Test
public static void main (String[] args)
String s="hello";
s.replace ('r','m');
System.out.println(s);
A. hello
B. HELLO
C. hemmo
D. HEMMO
[单项选择]下列代码段的执行结果是( )。
public class Test
public static void main(String args[])
String s1=new String("hello");
String s2=new String"hello");
System.out.println(s1==s2);
System.out.println(s1.equal(s2));
A. true false
B. true true
C. false true
D. false false
[单项选择]下面程序片段的运行结果是( )。
public class Test
public static void main (String args[])
int a=10,b=4,c=20,d=6;
System.out.println (a++ *b+c* --d);
A. 144
B. 160
C. 140
D. 164