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...


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;


}



Jun 09, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here