Odd factorial is the same equation as the factorial, except thatit only multiples the odd numbers. So if you want the odd factorialof 5, then you’d calculate 5 * 3 * 1. For more information aboutfactorials,
Your task is to write a program that will check whether theentered number is odd and positive, if it is, then calculate theodd factorial and exit. If not, then ask the user to enter a validnumber again
using c++
Expert Answer
Answer to Odd factorial is the same equation as the factorial, except that it only multiples the odd numbers. So if you want the o…