1. Design a C++ program named (permu_combi.cpp), that presents a menu to select to calculate permutation or combination for two integers, as example The menu will show: Please select: 1. Calculate...

Answer fast else I’ll give bad rating Only code and output need
1. Design a C++ program named (permu_combi.cpp), that presents a menu to select to calculate<br>permutation or combination for two integers, as example<br>The menu will show:<br>Please select:<br>1. Calculate Permutation<br>2. Calculate Combination<br>0. Exit<br>Notes:<br>а!<br>Permutation P formula is: P(a, b)<br>(а-b)!<br>P(a,b)<br>Combination C formula is: C(a, b)<br>b!<br>Where x! = (x) * (x – 1) * (x – 2)... (3) * (2) * (1)<br>Break the program into functions/sub-components, at least 3 (main as default,<br>permutation calculation, and combination calculation)<br>These functions/sub-components must all have the appropriate parameters.<br>Upload the C++ source file (permu_combi.cpp),<br>

Extracted text: 1. Design a C++ program named (permu_combi.cpp), that presents a menu to select to calculate permutation or combination for two integers, as example The menu will show: Please select: 1. Calculate Permutation 2. Calculate Combination 0. Exit Notes: а! Permutation P formula is: P(a, b) (а-b)! P(a,b) Combination C formula is: C(a, b) b! Where x! = (x) * (x – 1) * (x – 2)... (3) * (2) * (1) Break the program into functions/sub-components, at least 3 (main as default, permutation calculation, and combination calculation) These functions/sub-components must all have the appropriate parameters. Upload the C++ source file (permu_combi.cpp),

Jun 08, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here