124k views
0 votes
Create a Part 1 subpackage p1 under the ca6 package. In the p1 subpackage, create a public class Division. In the class, write a public static method

public static int divide (int dividend, int divisor)
that returns the (integer part of the) quotient dividend/divisor if divisor + 0, and throws an ArithmeticException with the error message "The divisor cannot be zero".
In the Division class, write a main method that
1. Attempts to read integers x and y from the console using a Scanner object, invoke the divide method to divide x by y, and print the result to the console.
2. If the divide method throws an Arithmetic Exception, the main method should print the error message from the exception thrown by the divide method.
3. If the nextInt method of the Scanner object throws an InputMismatchException, (i.e., if at least one of the inputs is not an integer), the main method should print the error message "Inputs must be integers".
4. Whenever either of the above two exceptions occurs, the main method should prompt the user to enter x and y again, read the inputs, and repeat Step 1 until both inputs are valid and Step 1 is successful.

User Jimplode
by
7.2k points

1 Answer

3 votes

Final answer:

To create the subpackage p1 under the ca6 package, you would need to create a new directory called p1 inside the ca6 directory. In the p1 subpackage, you will create a public class called Division with a divide method that returns the integer quotient of the dividend divided by the divisor, throwing an ArithmeticException if the divisor is zero. The main method reads input from the console and performs the division, handling exceptions and prompting for valid input if necessary.

Step-by-step explanation:

The subject of this question is Computers and Technology and the grade level is College.

To create the subpackage p1 under the ca6 package, you would need to create a new directory called p1 inside the ca6 directory. In the p1 subpackage, you will create a public class called Division. Inside the Division class, you should write a public static method called divide with the following signature:

public static int divide(int dividend, int divisor)

This method should return the integer quotient of the dividend divided by the divisor if the divisor is not zero. If the divisor is zero, the method should throw an ArithmeticException with the error message 'The divisor cannot be zero'.

In the Division class, you will also write a main method that reads integers x and y from the console using a Scanner object, invokes the divide method to divide x by y, and prints the result to the console. If the divide method throws an ArithmeticException, the main method should print the error message from the exception. If the nextInt method of the Scanner object throws an InputMismatchException, the main method should print the error message 'Inputs must be integers'. Whenever either of the above two exceptions occurs, the main method should prompt the user to enter x and y again, read the inputs, and repeat the process until both inputs are valid and the division is successful.

User Golan
by
7.9k points