阿里云数据线答案(二)

1.假设有如下程序:

public class Demo {
public static void main(String args[]) {
int num = 68 ;
char c = (char) num ;
System.out.println(c) ;
}
}
最终的执行结果是什么?
A . B
B . C
C . D
D . a
正确答案: C . D

ASCII码对照表
2.假设有如下程序:

public class Demo {
public static void main(String args[]) {
boolean flag = 10%2 == 1 && 10 / 3 == 0 && 1 / 0 == 0 ;
System.out.println(flag ? “mldn” : “yootk”) ;
}
}

A .mldn
B .yootk
C .true
D .程序出错
B .yootk

Java 运算符
Java中,&&与&,||与|的区别
三元运算符

阿里云数据线答案(一)

1.假设有如下程序:
public class Demo {
public static void main(String args[]) {
int num = 68 ;
char c = (char) num ;
System.out.println(c) ;
}
}
最终的执行结果是什么?
A . B
B . C
C . D
D . a
正确答案: C . D

ASCII码对照表
2.假设有如下程序:
public class Demo {
public static void main(String args[]) {
boolean flag = 10%2 == 1 && 10 / 3 == 0 && 1 / 0 == 0 ;
System.out.println(flag ? “mldn” : “yootk”) ;
}
}

A .mldn
B .yootk
C .true
D .程序出错
B .yootk


:D 一言句子获取中...