题目详情
当前位置:首页 > 职业培训考试
题目详情:
发布时间:2023-10-22 09:13:16

[单项选择]下列程序执行的结果是______。 public class ex9 { public static void main (String[] args) { label: for (int i=0; i<3; i++) { for (int j=0; j<3; j++) { if (i==j) continue label; System. out.print (i*3+j+"/t"); } System.out .println ("i="+i); } } }
A. 3 6 9
B. 3 6 7
C. 6 9
D. 3 6

更多"下列程序执行的结果是______。 public class ex"的相关试题:

[单项选择]下列程序执行的结果是______。 public class ex6 { public static void main(String[] args) { char ch=’8’; int r=10; switch(ch+l) { case ’7’: r=r+3; case ’8’: r=r+5; case ’9’: r=r+6; break; default: ; } System.out.print(r); } }
A. 14
B. 13
C. 16
D. 10
[单项选择]下面程序段的输出结果是______。
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=1;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
[单项选择]执行下列程序段之后,变量b的值为( )。
public class Test
public static void main (String[] args)
int i = 12;
int j = 24;
boolean b1 = true;
booleanb=(j%i==0)&&(! b1) || (j/i! =2);
System. out. println (b);


A. true
B. false
C. 0
D. 1
[单项选择]下列程序的输出结果是______。
public class Test10
public static void main(String[] args)

char c1=’B’,c2=’c’;
if(c1 + 1<c2 ) ++c1;
System.out.println(c1);

A. B
B. b
C. C
D. c
[填空题]下面的程序执行后,屏幕上显示的应是______。
public class Exam
public static void main(String[]args)
char charl[ ]=’1’,’2’,’3’,’4’;
chgr char2[]=’0’,’1’,’2’,’3’,’4’;
String s1=new String(char1);
String s2=new String(char2,1,5);
System.out.println(s1.equals(s2));


[单项选择]下列程序的执行结果是  public class Testhh    public static void main(String args [] )     Strings1=new String("I am boy");    Strings2=new String("I am boy");     System.out.println(s1.equals(s2));     
A) true
B) falseC) I am boy D) 都不正确

[单项选择]执行下面程序后,结果是   public class Testrr      public static void main(String args[])      int i=0xFFFFFFF1;      int j=-i;      System.out.println("j="+j);       A) j=-15 B) j=-16C) j=16
D) j=15

[单项选择]下列程序的执行结果是 ( )
public class Test

public int aMethod( )

satic int i=0;
i++;
System.out.println(i);

public static void.main(String args[])

Test test=new Test( );
test.aMethod( );

A. 编译错误
B. 0
C. 1
D. 运行成功,但不输出
[单项选择]

阅读下面程序
public class Test implements Runnable{
public static void main(String[]args){
_______________________________________;
t. start( );
}
public void mR( ){
System. out. println("Hello!");
}   
 }
在程序下画线处填入正确选项是()


A. Test t=flew Test()
B. Thread t=new Thread();
C. Thread t=new Thread(new Test());
D. Test t=new Thread();
[单项选择]下列程序的执行结果是 ( )
public class ex68
public static void main(String[]args)
ex68 obj=new ex68( );
int s=0;
for(int i=1;i<=4;i++)
s+=obj.method(i);

System.out.println(s);

public int method(int n)
if(n==1)
return 1;
else
return n*method(n-1);


A. 3
B. 9
C. 33
D. 153
[单项选择]下面程序执行后,输出的结果是( )。 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 Test
public static void main(String args[])
byte x=3,y=4;
long r=80L;
System.out.print(r/y);
System.out.print(",");
System.out.print(x/y);


A. 20.0,1
B. 20.0,1.0
C. 20,0
D. 20,1.0
[单项选择]执行下面程序后输出的正确结果是
Public class Test
public static void main(String args[])
byte x=3,y=4;
long r=80L;
System.out.print(r/y);
System.out.print(”,”);
System.out.print(x/y);


A. 20.0,1
B. 20.0,1.0
C. 20,0
D. 20,1.0
[单项选择]下列程序的执行结果是 ( ) public class ex68{ public static void main(String[]args){ ex68 obj=new ex68( ); int s=0; for(int i=1;i<=4;i++){ s+=obj.method(i); } System.out.println(s); } public int method(int n){ if(n==1) return 1; else return n*method(n-1); } }
A. 3
B. 9
C. 33
D. 153
[单项选择]下列程序的执行结果是( )。 public class ex68 { public static void main(String[] args) { ex68 obj=new ex680; int s=0; for(int i=1; i<=4; i++){ s+=obj.method(i); } System.out.println(s); } public int method(int n) { if(n==1) return 1; else tatum n * method(n-1); } }
A. 3
B. 9
C. 33
D. 153
[单项选择]下列程序的输出结果为( )。 public class Reentrant { public synchronized void a( ) { b( ); System.out.println("here I am,in a( )"); } public synchronized void b( ) { System.out.println("here I am,in b( )"); } public static void main(String args[]) { Reentrant r=new Reentrant( ); r.a( ); } }
A. here I am,in a()/here I am,in b()
B. here I am,in b()/here I am,in a()
C. here I am,in a()
D. here I am,in b()

我来回答:

购买搜题卡查看答案
[会员特权] 开通VIP, 查看 全部题目答案
[会员特权] 享免全部广告特权
推荐91天
¥36.8
¥80元
31天
¥20.8
¥40元
365天
¥88.8
¥188元
请选择支付方式
  • 微信支付
  • 支付宝支付
点击支付即表示同意并接受了《购买须知》
立即支付 系统将自动为您注册账号
请使用微信扫码支付

订单号:

请不要关闭本页面,支付完成后请点击【支付完成】按钮
恭喜您,购买搜题卡成功
重要提示:请拍照或截图保存账号密码!
我要搜题网官网:https://www.woyaosouti.com
我已记住账号密码