Write a c++ program t5hat do the following: a- Define a class called Calculator. b-Declare the object Cal of type Calculator. c- Define a member function display_sum that recieve two intNumber1 and Number2 then print the sum of these two numbers. d-Define a member function Display_multiply that recieve twoint Number1 and Number2 then print the multiplication of these twonumbers. Write a c++ program t5hat do the following: a- Define a class called Calculator. b-Declare the object Cal of type Calculator. c- Define a member function display_sum that recieve two intNumber1 and Number2 then print the sum of these two numbers. d-Define a member function Display_multiply that recieve twoint Number1 and Number2 then print the multiplication of these twonumbers.
Explanation / Answer
please rate - thanks #include using namespace std; class Calculator{ private: public: void display_sum(intNumber1,int Number2) {cout