简答题从键盘获取浮点数成绩,正确选项是________。 public class InputScore{ public static void main(String[] args) { Scanner input = new Scanner(System.in); double score= input.__________; System. out.println(score); }} A、 next () B、 nextLine() C、nextDouble() D、nextInt()简答题分析下面代码,下列说法正确的是________。 int count = 0; while (count A、 count B、 count C、 count D、 count < 100 在 Point B 处一直为假;简答题分析下面代码, 当调用 nPrint(“a”, 4)方法时会出现什么结果? static void nPrint(String message, int n) { while (n > 0) { System.out.print(message); n--; } } A、aaaaa B、aaaa C、aaa D、非法调用简答题程序在编译通过以后,仍然可能出现运行时错误和逻辑错误。 A、正确 B、错误简答题赋值运算符是双目运算符,优先级低,结合性为从左到右。 A、正确 B、错误简答题如下哪个是 Java 中的正确标识符_________ 。 A、 public B、super C、3number D、width简答题下面代码执行完毕后输出是________。 double area = 3.5; System.out.print("area"); System.out.print(area); A、3.53.5 B、3.5 3.5 C、 area3.5 D、area 3.5简答题设 i 为 1,执行表达式 i *= 2 后 i 为________。 A、0 B、1 C、2 D、3简答题下面哪个是编译 Java 程序的命令________。 A、javadoc B、java C、jar D、javac简答题Java语言采用面向对象的思想编程,具有跨平台、分布式、多线程等优点。 A、正确 B、错误简答题Java 中给标识符命名时不区分大小写。 A、正确 B、错误简答题以下那项布尔表达式是不合法的________。 A、(true) && (3 => 4) B、!(x > 0) && (x > 0) C、(x > 0) || (x D、(x != 0) || (x == 0)简答题若变量 x 已被初始化,则表达式 x++;可以当作语句。 A、正确 B、错误