Programming Reference/Librarys
Question & Answer
Q&A is closed
package scanner; import java.util.Scanner; public class Scanner { public static void main(String[] args) { /* Create Scanner Object for the input from the keyboard */ Scanner scan = new Scanner(System.in); String line; System.out.print("Please enter what you want: "); line = scan.nextLine(); // read keyboard buffer System.out.println("You typed in: " + nextLine); scan.close(); // close the object } }
Please enter what you want: The Anwer is 42 You typed in: The Anwer is 42