With the declarations Scanner scanner = new Scanner(System.in); and double inchesOfRain; which of the following would be correct use of the scanner?
A. inchesOfRain = scanner.nextLine();
B. inchesOfRain = scanner.nextInt();
C. inchesOfRain = scanner.nextDouble();
D. Any of the above.
JAVA