Question: (Part 1) Write a program that takes a positive number from the user and output the factorial (nl) of that number. The factorial of n
(Part 1) Write a program that takes a positive number from the user and output the factorial (nl) of that number. The factorial of n is N (n-1)* (n-2) (n-3)32 1 Ex: 51 5*4 3 2 1 120 41 4 * 3 * 2 * 1 24 31-3*2 1 6 21 2 1 2 01 - 1 (by definition) Validate: Your program should make sure that the number entered by the user is a positive number. If not, the program should loop back and ask the user to enter the number again. (Part 2) Using a loop, write a program that takes 10 integer values from the keyboard and outputs the minimum and maximum value of all the values entered. You can combine both parts into one program. No need to send 2 programs
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
