Computer Science, asked by diwarajput50, 8 months ago

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.

Answers

Answered by sdhanabagyamsdhanaba
2

Answer:

I hope I know the answer !!!

l will try to answer it as in grade 10 there os no computerscience

Similar questions