Question
Using C++ Language Create a class called polynomial for performing polynomial arithmetic . The class has the following header file: class polynomial { ? friend
Using C++ Language
Create a class called polynomial for performing polynomial arithmetic. The class has the following header file:
class polynomial
{
?friend ostream& operator
?friend istream& operator>>(istream& isObject, polynomial& cObject);
public:
?void set(int, double*);
?int getDegree() const;
?double* getPointer() const;
?polynomial operator+(const polynomial&) const;
?polynomial operator-(const polynomial&) const;
?polynomial operator*(const polynomial&) const;
?polynomial operator/(const polynomial&) const;
?polynomial operator%(const polynomial&) const;
?polynomial& operator=(const polynomial&);
?polynomial(const polynomial &otherObject);
?polynomial(int, double*);
?polynomial();
?~polynomial();
private:
?int degree;
?double *p;
};
Step 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