Java – How to Read Integers from the Console for calculation ?

Problem Statement

You need to read integers from the console window and use it for calculation within your java program.

Solution

If you want to know how to read integer value from a console and use it for calculation , you can use the Scanner class as shown below.

import java.util.Scanner;

public class Main {
    static Scanner helper = new Scanner(System.in);
    public static void main(String[] args) {
        int input1;
        int input2;
        int result;
        System.out.println("Please enter the first number for abundantcode");
        input1 = helper.nextInt();
        System.out.println("Please enter the second number for abundntcode");
        input2 = helper.nextInt();
        result = input1 + input2;
        System.out.println("Result is " + result);

    }
}

The output of the above program is

Please enter the first number for abundantcode

10

Please enter the second number for abundntcode

25

Result is 35