Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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;

};

image text in transcribed

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

More Books

Students also viewed these Databases questions