wrire a PASCAL program that will ask the coefficient of a polynomial, and then produce the output that print out the polynomial and the output value for the value of x.
Sample output
what is the coefficient of the x^3 term? 1
what is the coefficient of the x^2 term? 2
what is the coefficient of the x term? 3
what is the constant term? 5
what is the value of x? 5
The polynomial is (x)^3 + 2(x)^2 + 3(x) + 5
when x=5, the polynomial =195
個program應該點打ar??