[solved]-Write Program Asks User Enter Two Integers Print Following 1 Factorial 2 Fibonacci 3 Numbe Q38998533
Write a program that asks the user to enter two integers. Print the following: 1. The factorial of each 2. The fibonacci of each 3. The number of ways you can choose the smaller from the larger, considering order 4. The number of ways you can choose the smaller from the larger, ignoring order 5. The GCD of the two numbers 6. Whether each is prime The input must be validated. Here is a “method” which you may consider for validating input: public static int getAnInteger(String prompt) { int input; System.out.print (prompt); do { try { input = Integer.parseInt(scanner.nextLine()); return Math.abs(input); catch (NumberFormatException e) { System.out.print (“Please enter an integer> } while (true); Show transcribed image text Write a program that asks the user to enter two integers. Print the following: 1. The factorial of each 2. The fibonacci of each 3. The number of ways you can choose the smaller from the larger, considering order 4. The number of ways you can choose the smaller from the larger, ignoring order 5. The GCD of the two numbers 6. Whether each is prime The input must be validated. Here is a “method” which you may consider for validating input: public static int getAnInteger(String prompt) { int input; System.out.print (prompt); do { try { input = Integer.parseInt(scanner.nextLine()); return Math.abs(input); catch (NumberFormatException e) { System.out.print (“Please enter an integer> } while (true);
Expert Answer
Answer to Write a program that asks the user to enter two integers. Print the following: 1. The factorial of each 2. The fibonacci… . . .
OR

