Question: c++ Write a program that will output the sum of two quadratic polynomials. Your program must do the following: Define an abstract data type, Poly
c++

Write a program that will output the sum of two quadratic polynomials. Your program must do the following: Define an abstract data type, Poly with three private data members a, b and c (type double) to represent the coefficients of a quadratic polynomial in the form: ax^1 + bx + c Include a constructor in the Poly class to initialize all private data members with caller-supplied values (in addition to the default constructor!) Overload the addition operator to return the sum of two Poly objects. Overload the
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
