Create a Java program where the user will have to enter two values(Using JOptionPane) to be divided.
Create a Java program where the user will have to enter two values(Using JOptionPane) to be divided. The application catches an exception if one of the entered values is not an integer. Declare three integers—two to be input by the user and a third to hold the result after dividing the first two.
Add a try block that prompts the user for two values, converts each entered String to an integer, and divides the values, producing result.
Add a catch block that catches an ArithmeticException object if division by 0 is attempted. If this block executes, display an error message, and force result to 0.
catch(ArithmeticException exception)
{
JOptionPane.showMessageDialog(null, exception.getMessage());
result = 0;
}
Step by step
Solved in 2 steps with 3 images