forked from zmercury/cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcalculator.cpp
More file actions
54 lines (44 loc) · 1.05 KB
/
Copy pathcalculator.cpp
File metadata and controls
54 lines (44 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#include <iostream>
using namespace std;
class calculator {
public:
int a, b;
int sum = 0;
int diff;
int mul;
int rem;
void readInput() {
cout << "Enter any two number: ";
cin >> a;
cin >> b;
}
void calcSum() {
sum = a + b;
cout << "The sum is " << sum << endl;
}
void calcDiff() {
if(a > b) {
diff = a - b;
} else {
diff = b - a;
}
cout << "The difference is " << diff << endl;
}
void calcMul() {
mul = a * b;
cout << "The product is " << mul << endl;
}
void calcRem() {
rem = a / b;
cout << "The quotient is " << rem << endl;
}
};
int main() {
calculator c1;
c1.readInput();
c1.calcSum();
c1.calcDiff();
c1.calcMul();
c1.calcRem();
return 0;
}