Times 7
Try out this test problem first.
Given the variable x as your input, multiply it by seven and put the result in y.
Example...
2年以上 前
解決済み
Simple polynomial evaluation
Compute the value of a polynomial of degree n with all coefficients '1', at value x. n is always n>=0.
p(x)=1+x+x^2+...+x^n...