Question: Question 2. Recursion Sum (60 points) A Summation formula is defined as: sum(n, k) no + n1 + n2 + + nk ;for example: .

 Question 2. Recursion Sum (60 points) A Summation formula is defined

Question 2. Recursion Sum (60 points) A Summation formula is defined as: sum(n, k) no + n1 + n2 + + nk ;for example: . Write a C program to ask user input a decimal n and an integer k and return a correct summation following the formula defined above. The C program is required to use Recursion function (a function calling itself) to achieve this purpose. At least, when calculating some power of n, you are required to use Recursion to evaluate the power of n. Name your file Hw3_q2_code.c Hint: write a pow function with recursion method learned from the textbook or instructor's Ch4 slides (Not allowed to use pow in math.h library) and test it function well. Example inputs: Please input n-6.5 Please input k = 5 Example Output: Sum = 13712.34375. please input n = 10 please input k-4 Sum = 11111-000000 please input n6.5 please input k = 5 um 13712.343750

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!