Question: I need help with this programming assignment, please keep it in beginner c++ coding, as we are in the first couple months of c++... thank
I need help with this programming assignment, please keep it in beginner c++ coding, as we are in the first couple months of c++... thank you!Write a program that uses the following formula: _(i=1)^n(ax-ib)^c Your program will prompt the user for the number of iterations for the calculation. input values for n, x, a, b, and c. n must be a positive integer, but x, a, b, and c can be any real numbers. Then it will perform the calculation and output the result. Then, it will ask the user if they would like to perform another calculation. Only if the answer is Y, prompt the user again for new input values and perform the new calculation. USE EXACT STRING PROVIDED in below example (colored blue below) Your prompt msg and output msg MUST look like this EXACTLY: This program will calculate the sum (ax - ib)^c, where i goes from 1 to n. Enter the values for n, x, a, b, and c separated by spaces then press Enter. 10 2 3 4 5 The sum of (3*2 - i*4)^5 where i goes from 1 to 10 is {Your_calculation_value_here} Would you like to do another calculation (Y/N)? Y This program will calculate the sum (ax - ib)^c, where i goes from 1 to n. Enter the values for n, x, a, b, and c separated by spaces then press Enter. 20 3.5 1.7 2.5 -1 The sum of (1.7*3.5 - i*2.5)^-1 where i goes from 1 to 20 is {Your_calculation_value_here} Would you like to do another calculation (Y/N)? N Sample values: n x a b c sum 1 2 3 4 5 32 2 2 3 4 5 0 10 2 2 2 2 820
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
