As a warm-up for writing the polynomial
As a warm-up for writing the Polynomial class for Project 1, write a simple class called Quadratic for representing and using quadratic equations. A quadratic equation is any equation of the form f(x) = ax2 +bx + c (and is just a polynomial with degree 2). Your class will have:one instance variable: an integer array with exactly 3 slots, one for each coefficienta constructor which […]