Introduction - If you have any usage issues, please Google them yourself
//polynomial.cpp
//This program uses a list of doubles to implement simple polynomials
//of any degree. The first term in the list contains the coefficient
//of the constant term, the second term in the list contains the
//coefficient of the term of degree 1 and so on.