题目3单选题
The following code fragment reads in two numbers: Scanner input = new Scanner(System.in); int i = input.nextInt(); double d = input.nextDouble(); What is the incorrect way to enter these two numbersA. Enter an integer, a space, a double value, and then the Enter keyB. Enter an integer, two spaces, a double value, and then the Enter keyC. Enter an integer, an Enter key, a double value, and then the Enter keyD. Enter a numeric value with a decimal point, a space, an integer, and then the Enter key