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;

};

 Using C++ Language Create a class called polynomial for performing polynomial

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!