Question: Self-Test Exercise 17 asked you to overload the operator >> and the operator int parameters. The one-parameter constructor should initialize the first member of the
Self-Test Exercise 17 asked you to overload the operator >> and the operator int parameters. The one-parameter constructor should initialize the first member of the pair; the second member of the pair is to be 0.
Overload binary operator+ to add pairs according to the rule
(a, b) + (c, d) = (a + c, b + d)
Overload operator analogously.
Overload operator* on pairs and int according to the rule
(a, b) * c = (a * c, b * c)
Write a program to test all the member functions and overloaded operators in your class definition.
using this tempalte


#include
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
