How to make a c++ programming for basic arithmetic operation by Class and Object?
This c++ language programming is free all type of errors like compiler and runtime errors and this programming is tested to compile and then run the program code.
How to make basic arithmetic operation by class and object in c++ programming
#include
#include
using namespace std;class Test {
public:
double a, b;
void add(double a, double b) {
double result;
result = a + b;
cout << a << ” + ” << b << ” = ” << result << endl;
}
void subtract(double a, double b) {
double result;
result = a – b;
cout << a << ” – ” << b << ” = ” << result << endl;
}
void multiply(double a, double b) {
double result;
result = a*b;
cout << a << ” * ” << b << ” = ” << result << endl;
}
void divide(double a, double b) {
double result;
result = a / b;
cout << a << ” / ” << b << ” = ” << result << endl;
}
};
int main() {
Test o;
cout << “Enter the frist number: “;
cin >> o.a;
cout << “Enter the second Number: “;
cin >> o.b;
cout << “This is following:” << endl;
o.add(o.a, o.b);
o.subtract(o.a, o.b);
o.multiply(o.a, o.b);
o.divide(o.a, o.b);
return 0;
}
//—-End code—-
Enter the second Number: 4
Result:
5 + 4 = 9
5 – 4 = 1
5 * 4 = 20
5 / 4 = 1.25
If any dought about this c++ programming code or input & output please comment below
Thank You!