Answer to Question #102862 in C++ for jayesh

Question #102862
As input, you are given an integer n, a double x, followed by n+1 doubles a_n, a_{n-1}, ..., a_0. You are to print the value of the polynomial a_0 + a_1x+a_2x^2+...+a_nx^n.

Here is the manual algorithm. At the beginning you just have read a_n. Next you read a_{n-1} and calculate a_nx+a_{n-1}. Next you read a_{n-2} and calculate (a_nx+a_{n-1})x+a_{n-2}. So after n iterations you will have the value of the polynomial above. Note that in each iteration you need to use the values calculated earlier.

Check that you understand the method by calculating manually for small values of n. This is not to be submitted, nor put in a program.

Write the program. You will need to decide what variables to use, what to store in them. Test your program as much as you can before submitting it.
1
Expert's answer
2020-02-13T10:50:44-0500
#include <bits/stdc++.h>
using namespace std;

int main(){
  int n;
  double x, a = 0, b = 0, answer = 0;
  cin >> n >> x;
  for (int i = 0; i <= n; i ++) {
    cin >> b;
    answer += a * x + b;
    a = b; 
  }
  cout << answer;
  return 0;
}

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!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS