Menu

[Solved]Throwing Exceptions File Factorials Java Contains Program Calls Factorial Method Mathutils Q37265457

Throwing Exceptions File Factorials java contains a program that calls the factorial method of the MathUtils class to compute

// MathUtils.java /1 Provides static mathematical utility functions. public class MathUtils // Returns the factorial of the aThrowing 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 sevcral positive integers, then try a negative number. You should find that it works for small positive integers (values< 17), but that it retums a large negative value for larger integers and that it always returns 1 for negative integers. 1. Retuming 1 as the factorial of any negative integer is not correct-mathernatically, 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, but then what? The method must retum a value, and even if it prints an error message, whatever value is retumed 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-IllegalArgument Exception, which extends RuntimeException. Modify your program as follows D Modify the header of the factorial method to indicate that factorial can throw an IllegalArgument Exception Modify the body of factorial to check the value of the argument and, if it is negative, throw an IllegalArgumentException. Note that what you pass to throw is actually an instance of the Ilegal ArgumentException class, and that the constructor takes a String parameter. Use this parameter to be specific about what the problem is. a Compile and run your Factorials program after making these changes. Now when you enter a negative number an exception will be thrown, temninating 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 ate message, but then continue with the loop. Think carefully about where you will need to put the try and catch 2. Retuming a negative number for values over 16 also is not correct. The problem is arithmetic overflow-the factorial is bigger than can be represented by an int. This can also be thought of as an Illegal ArgumentException 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. // Factorials java // Reads integers trom 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 scannew Scanner (System.in) nie (keepoing.equalacyr) 11 keapdoing.equala(y-)) System.out.print(“Enter an integer: int valscan.next Int) System.out.printin( Factorial(“+val + MathUtils.factorial (val)): System,out.print (“Another factorial? (y/n): keepGoing scan.next ) // MathUtils.java /1 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 Show transcribed image text 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 sevcral positive integers, then try a negative number. You should find that it works for small positive integers (values0; i–) fac *= i; return fac

Expert Answer


Answer to Throwing Exceptions File Factorials java contains a program that calls the factorial method of the MathUtils class to co… . . .

OR


Leave a Reply

Your email address will not be published. Required fields are marked *