Basta ya de indagar por todo internet porque llegaste al espacio adecuado, poseemos la solución que buscas y sin problemas.
Ejemplo 1: leer entrada de entero java
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));int a = Integer.parseInt(br.readLine());
Ejemplo 2: leer int desde el teclado java
import java.util.Scanner;
public classMain
public static void main(String args[])
Scanner scan= new Scanner(System.in);//For string
String text= scan.nextLine();
System.out.println(text);//forintint num= scan.nextInt();
System.out.println(num);/*Is better to create another instance of Scanner if you have to use both nextline
and nextInt because they can conflict each other
*/
Eres capaz de proteger nuestra labor escribiendo un comentario o dejando una valoración te damos la bienvenida.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)