Answer to Question #75828 in Algorithms for Marquise Blalock
Write a pseudocode algorithm to compute the product of the first n positive integers. How many multiplications does your algorithm perform?
1
2018-04-11T13:43:11-0400
Input: n
If n≤2 then
P=n
Else {
P=2
For i=3 to n
P=i∙P }
Return P // product of the first n positive integers
The algorithm perform does not perform multiplications if n≤2, and it performs (n-2) multiplications if n>2.
Need a fast expert's response?
Submit order
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
Learn more about our help with Assignments:
Algorithms
Comments
Leave a comment