-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCalculator.cpp
50 lines (46 loc) · 1.07 KB
/
Calculator.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
# include <iostream>
using namespace std;
class calc {
public:
void init() {
char op;
float num1, num2;
cout << "========================CALCULATOR========================";
cout << "\nPlease enter first number then operator followed by second number: ";
cin >> num1;
cin >> op;
cin >> num2;
switch (op) {
case '+':
cout << num1 + num2;
break;
case '-':
cout << num1 - num2;
break;
case '*':
cout << num1 * num2;
break;
case '/':
cout << num1 / num2;
break;
default:
cout << "\nWrong operation.";
break;
}
}
void cont() {
char ch;
cout << "\nDo you want to continue? (y/n): ";
cin >> ch;
if (ch == 'Y' || ch == 'y') {
calc c1;
c1.init();
}
}
};
int main() {
calc c1;
c1.init();
c1.cont();
return 0;
}