java题库api_JAVA题库

该楼层疑似违规已被系统折叠 隐藏此楼查看此楼

System.out.println("So true");

}

C)   int i = 1;

int j = 2;

if (i == 1 || j == 2) {

System.out.println("OK");

}

D)   int i = 1;

int j = 2;

if (i == 1 & | j == 2) {

System.out.println("OK");

}

42、{Java题目}下列代码执行的结果是( C )(选择1项)

public class text {

public static void main(String[] args) {

int x= 1, y = 6;

while (y--==6) {x--;}

System.out.println("x=" + x +" ,y =" + y);

}

}

A)程序能运行,输出结果:x=0,y=5       B)程序能运行,输出结果:x=-1,y=4

C)程序能运行,输出结果:x=0,y=4       D)程序不能编译

43、{Java题目}以下Java代码编译运行后,下列选项中,(ACD)会出现在输出结果中。

(选择3项)

public class text3{

public static void main(String args[]) {

for(int i=0;i<3;i++) {

for(int j=3;j>=0;j--) {

if(i == j)

continue;

System.out.println(“i=”+i+“j=”+j);

}

}

}

}

A)i=0 j=3     B)i=0 j=0     C)i=0 j=2     D)i=0 j=1

44、{Java题目}分析下列Java代码, 编译运行后,输出结果是(C)。(选择一项)

class A{

public static void main(String[] args){

method();

}

static void method(){

try{

System.out.println(“Hello”);

}

finally{

System.out.println(“good-bye”);

}

}

}

A)“Hello”     B)“good-bye”     C)“hello”“good-bye”     D)代码不能编译

45、{Java题目}下面程序的输出结果是。(选择1项)A

public class ex2 {

public static void main(String[] args)

{

for(int cnt=0;cnt<10;cnt++)

{

if(cnt==5)

break;

System.out.print(cnt);

}

}

}

A)0 1 2 3 4     B)6 7 8 9     C)0 1 2 3 4 6 7 8 9     D)5

46、{Java题目}给定下面的代码片段: D

public class ex1 {

public void Test() {

try {

method();

}

catch (ArrayIndexOutOfBoundsException e){

System.out.println("Exception1");

}

catch(Exception e) {

System.out.println("Exception2");

}

finally{

System.out.println("Thank you!");

}

}

public void method() {

//...

}

public static void main(String[] args) {

ex1 obj=new ex1();

obj.Test();

}

} 如果函数method正常运行并返回,会显示下面的哪些信息?(选择1项)

A)Hello World     B)Exception1     C)Exception2     D)Thank you!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值