Answered step by step
Verified Expert Solution
Question
1 Approved Answer
I need to have two classes, a Term class and a Polynomial class. The Polynomial class needs to contain a vector of Term objects. Also,
I need to have two classes, a Term class and a Polynomial class. The Polynomial class needs to contain a vector of Term objects. Also, this needs to be done in c++. Thanks in advance.
Example 2 Polynomials Develop class Term. The class contains C1) A coefficient, and an exponent. E.g., term 2xA4 has the coefficient of 2 and the exponent 4. (2) overload the output operator (KK) to properly display the term Develop class Polynomial. The internal representation of a Polynomial is an array of terms. Develop a complete class containing proper constructor and destructor functions as well as set and get functions. The class should also provide the following overloaded operator capabilities: a) overload the addition operator C) to add two Polynomials. b) overload the assignment operator to assign one Polynomial to another. c) overload the addition assignment operator subtraction assignment operator d) overload the output operator (KK) to properly display the polynomial Write a driver program. You feel free to define any Polynomial objects, and demonstrate you can use the operator overloading functionsStep by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started