-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmultipleInheritance.cpp
54 lines (47 loc) · 1.01 KB
/
multipleInheritance.cpp
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 <bits/stdc++.h>
using namespace std;
class simpleCalculator {
protected:
int a, b;
public:
void enter() {
cout << "Enter values for simple calculator: ";
cin >> a;
cin >> b;
}
void scalc() {
cout << "Addition: " << a + b << "\n";
cout << "Subtraction: " << a - b << "\n";
cout << "Multiplication: " << a * b << "\n";
cout << "Division: " << a / b << "\n";
}
};
class scientificCalculator {
protected:
int c;
public:
void enter() {
cout << "Enter value for scientific calculator: ";
cin >> c;
}
void sCcalc() {
cout << "Square root: " << sqrt(c) << "\n";
cout << "Square: " << c * c << "\n";
cout << "Cube: " << pow(c, 3) << "\n";
cout << "Log: " << log(c) << "\n";
}
};
class hybridCalculator : public simpleCalculator, public scientificCalculator {
public:
void hcalc() {
scalc();
sCcalc();
}
};
int main() {
hybridCalculator hc;
hc.simpleCalculator::enter();
hc.scientificCalculator::enter();
hc.hcalc();
return 0;
}