Answers for "how to use the scanner class to get input from the user"

10

how to use scanners in java

import java.util.Scanner;

Public class Scanner {
	Public static void main(String[] args) {
    	// Scanner *scanner name here* = new Scanner(System.in);
      	Scanner scan = new Scanner(System.in);
      	System.out.println("Type anything and the scanner will take that input and print it");
      	String next = scan.next();
      	System.out.println(next);
    } 
}
Posted by: Guest on August-18-2020
0

User input (scanner)

String line = scanner.nextLine();
int age = Integer.parseInt(line); // Exception-t
Posted by: Guest on April-25-2021

Code answers related to "how to use the scanner class to get input from the user"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language