10 语句 System.out.println(4+8+”Hello,world!”); 的输出结果是 12Hello,world! 答案:X 2-Java基本语法测验-客观题 以下__________是合法标识符。 答案:sum 点我阅读全文
D hello world 定义一个数组String[] cities={“北京”,”上海”,”广州”,”厦门”,”郑州”,”武汉”,”西安”},数组中的cities[6]指的是_____________。 答案:西安 A 西安 点我阅读全文
下面代码的运行结果是_____________。 答案:1 2 3 4 5 public class Test{ public static void main(String[] args){ int[] a=new int[3]; i 点我阅读全文
D boolean a == false; 分析下面的代码,输出结果正确的是_____________。 答案:编译错误,更改为int c=(int) d/2; double d=84.54; d++; 点我阅读全文