Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Throwing Exceptions File Factorials.java contains a program that calls the factorial method of the MathUtils class to compute the factorials of integers entered by the

Throwing Exceptions

File Factorials.java contains a program that calls the factorial method of the MathUtils class to compute the factorials of integers entered by the user. Save these files to your directory and study the code in both, then compile and run Factorials to see how it works. Try several positive integers, then try a negative number. You should find that it works for small positive integers (values < 17), but returns a large negative value for larger integers, and always returns 1 for negative integers. Returning 1 as the factorial of any negative integer is incorrect

mathematically, the factorial function is not defined for negative integers. To correct this, you could modify your factorial method to check if the argument is negative. However, the method must return a value even if it prints an error message, but whatever value is returned could be misconstrued. Instead it should throw an exception indicating that something went wrong so it could not complete its calculation. You could define your own exception class, but there is already an exception appropriate for this situation

IllegalArgumentException, which extends RuntimeException. Modify your program as follows:

Modify the header of the factorial method to indicate that factorial can throw an IllegalArgumentException. Modify the body of factorial to check the value of the argument and, if it is negative, throw an IllegalArgumentException. Note that what you throw is actually an instance of the IllegalArgumentException class, and that the constructor takes a String parameter. Use this parameter to be specific about what the problem is. Compile and run your Factorials program after making these changes. Now when you enter a negative number an exception will be thrown, terminating the program. The program ends because the exception is not caught, so it is thrown by the main method, causing a runtime error.

Modify the main method in your Factorials class to catch the exception thrown by factorial and print an appropriate message, but then continue with the loop. Think carefully about where you will need to put the try and catch. Returning a negative number for values over 16 is also incorrect. The problem is arithmetic overflow

the factorial is bigger than can be represented by an int. This can also be thought of as an IllegalArgumentException

this factorial method is only defined for arguments up to 16. Modify your code in factorial to check for an argument over 16 as well as for a negative argument. You should throw an IllegalArgumentException in either case, but pass different messages to the constructor so that the problem is clear. Deliverables - The complete program and the final execution. // **************************************************************** // Factorials.java // // Reads integers from the user and prints the factorial of each. // // **************************************************************** import java.util.Scanner; public class Factorials { public static void main(String[] args) { String keepGoing = y; Scanner scan = new Scanner(System.in); while (keepGoing.equals(y) || keepGoing.equals(Y)) { System.out.print("Enter an integer: "); int val = scan.nextInt(); System.out.println("Factorial(" + val + ") = " + MathUtils.factorial(val)); System.out.print("Another factorial? (y/n) "); keepGoing = scan.next(); } } } // **************************************************************** // MathUtils.java // // Provides static mathematical utility functions. // // **************************************************************** public class MathUtils { //------------------------------------------------------------- // Returns the factorial of the argument given //------------------------------------------------------------- public static int factorial(int n) { int fac = 1; for (int i=n; i>0; i--) fac *= i; return fac; } }

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Records And Database Management

Authors: Jeffrey R Stewart Ed D, Judith S Greene, Judith A Hickey

4th Edition

0070614741, 9780070614741

More Books

Students also viewed these Databases questions

Question

Explain the different types of marketing strategies.

Answered: 1 week ago

Question

Explain product positioning.

Answered: 1 week ago

Question

Explain Industrial market segment.

Answered: 1 week ago

Question

7. Discuss the key features of the learning organization.

Answered: 1 week ago