注意:此页面搜索的是所有试题
                题目内容
                (国际开放大学Java语言程序设计)
            
            
                下列代码段的运行结果为()
public class Test {
public static void main(String[] args) {
int num = 0x20;
System.out.println("current value:" + num);
}
}
A. current value: 20 B. 编译错误
C. current value: 32 D. current value: num
                
                    
                    
                    
                
                
                
            
        public class Test {
public static void main(String[] args) {
int num = 0x20;
System.out.println("current value:" + num);
}
}
A. current value: 20 B. 编译错误
C. current value: 32 D. current value: num
参考答案
 
                