This is an easy functionsprograming problem I was ill and didn\'t go class so Ic
ID: 3614273 • Letter: T
Question
This is an easy functionsprograming problem
I was ill and didn't go class so Ican't solve it. I need help before 10 PM today.
It's about atemplateprogram that I have tomodify.
The template program is at theend of this post.
a template that contains a programmer-built function forfactorial. You will modify this program by adding anotherfunction that will perform the following calculation forcombinations
You will modify this program by adding another function thatwill perform the following calculation for combinations:
where n and k are integer values.
Your new function should be called from main and will call thefactorial function. Your new function should return thecalculation above to main, and main should output the result. Do NOT use the same identifier (variable name) in more than onefunction. Make sure you have some test data before you try towrite the program.
Hint: Complete this assignment in two steps. In thefirst step write the new function to do the division
and test it. Once your program is performing thiscalculation correctly, then modify the numerator and denominator ofthe fraction to call the factorial function.
Things to think about….
Explanation / Answer
please rate - thanks Why was the limit of 15 imposed for factorial of anumber? (Hint: see what would happen if you removed thecheck and used larger numbers.) 15! is thelargest number that can fit in an integer How could the program be modified to calculate correctly thefactorial of larger numbers? change result to a double #include using namespace std; int factorial (int); //function prototype ordeclaration double numbers(int,int); int main() { double result; int n, k; coutRelated Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.