Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
import java.io.*;
public class ConsoleReader
{
public static void main(String[] args)
{
BufferedReader readConsole = new BufferedReader(new InputStreamReader(System.in));
System.out.print("Enter a number: ");
String number = null;
String aNumber = null;
int a = 0;
int b = 0;
int c = 0;
try
{
number = readConsole.readLine();
a = Integer.parseInt(number);
}
catch(IOException e)
{
System.out.println( e );
}
try
{
System.out.print("Enter another number: ");
aNumber = readConsole.readLine();
b = Integer.parseInt(aNumber);
}
catch(IOException e)
{
System.out.println( e );
}
c = a+b;
System.out.println("The numbers you enter were " + a +" and " + b + ". Your total is: " + c + ".");
}
}