Evaluating a polynomial with Horner's Algorithm and calculating steps (Java)
问题 I need help on my java code. What I'm trying to accomplish is to calculate the size of each step on a polynomial: double s = (b-a)/nsteps; The inputs for the polynomial to be created is degree, coefficient, start value of x , stopping value of x , and the number of steps. Whenever I try to run a test, my output is 0 for x and y and I'm not sure what I am missing on my code. Here is my run test on how its supposed to work, but my result for x and y is 0 : Enter degree:2 Enter coefficient 2:1