I need to write a declaration for a polynomial class where data members are an integer for the degree and an array for for the list of coefficients and with basic operations of input and output....and then implement the input operation....
Here is what I have
class Polynomial
{
public:
list1 (int degree = 100)
int list2 []
}
There is a chance I have no idea what I am doing so just thought that I could just at least start with something