该楼层疑似违规已被系统折叠 隐藏此楼查看此楼
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!