注意:此页面搜索的是所有试题
下列代码段的运行结果为()
public class Test {
public static void main(String[] args) {
int num = 0b10;
System.out.println("current value:" + num);
}
}
A current value: 10. B. 编译错误
C. current value: 2 D. current value is 8

参考答案