integer scanner java code example
Example 1: how to scan Integer in Java
import java.util.*;
public class HowToScan {
public static void main( String args[] )
{
Scanner S = new Scanner(System.in);
int a;
int b;
int sum;
a = S.nextInt();
b = S.nextInt();
sum = a + b;
System.out.println( a + "+" + b + "=" + sum );
}
}
Example 2: read integer input java
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int a = Integer.parseInt(br.readLine());
Example 3: read int from keyboard java
import java.util.Scanner;
public class Main{
public static void main(String args[]){
Scanner scan= new Scanner(System.in);
//For string
String text= scan.nextLine();
System.out.println(text);
//for int
int 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
*/
}