CJCoding With Joseph
15per day
← Back to Question List

Select topics to narrow your question pool, then enable Random to jump to a random question matching your filters.

Topics:
Java Quiz #16

next vs nextLine

mediumScanner

When the input is just hello on one line (nothing after it), what will be printed by this program?

📄 Code

1import java.util.Scanner;
2 
3public class Main {
4 public static void main(String[] args) {
5 Scanner input = new Scanner(System.in);
6 
7 String first = input.next();
8 String rest = input.nextLine();
9 
10 System.out.println("first=" + first);
11 System.out.println("rest=" + rest);
12 }
13}