0
Como puedo usar el scanner?
2 ответов
+ 3
At first you need to import the scanner class:
import java.util.Scanner;
In your code:
Scanner scan = new Scanner(System.in);
//the scanner waits now for user input
int i = scan.nextInt();
double d = scan.nextDouble();
String str = scan.next();
String str = scan.nextLine();
long l = scan.nextLong();
and so on...
https://www.sololearn.com/learn/Java/2220/?ref=app
+ 1
Lo importas:
Import java.util.Scanner;
Creas un objeto tipo scanner:
Scanner 'nombre q quieras del objeto' = new Scanner(System.in);
Y lo usas cuando lo necesites:
Supongamos q tu objeto scanner se llama scan, scan.nextInt(); para almacenar enteros, scan.nextLine(); para cadenas de texto (String's)
System.out.print ("escribe tu nomre: ");
String nombre = scan.nextLine();
si en vez de llamarse tu objeto scan, se llamara in, seria in.nextInt(); etc