更多"下列语句序列执行后,输出的结果为______。 public cl"的相关试题:
[单项选择]下列语句序列执行后,k的值是 ( ) public class c9{ public static void main(String[]args){ int a=10,b=18,c=30; switch(b%A) { case 7:c--;break case 8:c-=2;break; case 9:c-=3;break; default : c * =b;break; } System.out.println(C) ; } }
A. 28
B. 29
C. 27
D. 540
[单项选择]下列语句序列执行后,k的值是( )。 public class c6{ public static void main(String[ ] args) { int a=10, b=18, c=30; switch (b% A) { case 7: c--; break; case 8: c-=2; break; case 9: c-=3; break; default: c* =b; break; } System.out.println (c); } }
A. 28
B. 29
C. 27
D. 30
[单项选择]下列语句输出结果为( )。 public class test public static void main (String args[]) Strings1=newString("HOW"); Strings2=newString("How"); System.out.println(!(s1.equals(s2))):
A. false
B. true
C. 0
D. 1
[单项选择]下列语句序列执行后,k的值是______。
public class Testll
public static void main(String[] args)
int a=10, b=18, c=30;
switch(b%a)
case 7: c--;break;
case 8: c-=2;break;
case 9: c-=3;break;
default: c * =b;break;
System.out.println(c);
A. 28
B. 27
C. 29
D. 540
[单项选择]下列语句序列执行后,k的值是______。 public class Testll { public static void main(String[] args) { int a=10, b=18, c=30; switch(b%a){ case 7: c--;break; case 8: c-=2;break; case 9: c-=3;break; default: c * =b;break; } System.out.println(c); } }
A. 28
B. 27
C. 29
D. 540
[单项选择]下列语句输出结果为( )。
public class test/
public static void main (String args[])
String s1=new String("How");
String s2=new String("How");
System.out.println(!(s1.equals(s2)));
A. false
B. true
C. 0
D. 1
[单项选择]下列语句序列执行后,K的值是______。 public class Test11 { public static void main(String[] args) { int m=3, n=6, k=0; while ((m++)<(n--)) ++k; System.out.println (k); } }
A. 0
B. 1
C. 2
D. 3
[单项选择]下面程序执行后的输出结果为( )。
public class fun
public static void main(String args[])
String greets="How are you!";
String s=greets.substring(0,3);
System.out.println(S);
A. How
B. are.
C. you
D. how ate you!
[单项选择]下面程序执行后,输出的结果是( )。 public class Test { public static void main (String[] )args) { boolean m=true; if(m==false) System.out.println("假"); else if(m====true) System.out.println("真"); else System.out.println ("错误"); } }
A. 真
B. 假
C. 错误
D. 编译出错
[单项选择]下列程序执行后,输出的结果是______。 public class exl7 { public static void main(String[] args) int a=3; int b=4; int x=5; if(++a<b) x=x+a; else if(a--<-b) x-x-a; System.cut.print(x); } }
A. 4
B. 5
C. 3
D. 2
[单项选择]下列语句执行后,i的值是( )。
public class Test
public static void main(String[ ] args)
int i =0;
for(int j=10; j>5&&i<5; j-=3,i+=2) i=i+j;
System. out. println(i);
A. 8
B. 9
C. 10
D. 12
[填空题]顺序执行下面的语句后,输出的结果是______。
public class exl6
{
public static void main(String[] args)
{
int i;
int a[] = new int[10];
for(i = O; i < a.length; i++)
a[i] = i * 10 + j;
for(i = 1; i < a.length; i++)
if(a[i]%5 == O)
System,out.println(a[i]);
}
}
[单项选择]下面程序段的输出结果是
public class Test
public static void main(Stringargs[])
int x,y;
x=(int)Math.sqrt(5)/2+(int)Math.random( )*5/2;
y=(int)Math.sqrt(3)/2+(ht)Math.random( )*3/2;
if(x>y)
System.out.println(”x>y”);
else if(x=y)
System.out.println(”x=y”);
else
System.out.Println(”x<y”);
A. x>y
B. x=y
C. x<y
D. 编译错误