-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCalculator.cpp
More file actions
70 lines (65 loc) · 1.22 KB
/
Calculator.cpp
File metadata and controls
70 lines (65 loc) · 1.22 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#include "Calculator.h"
#include <stdexcept>
#include <cmath>
using namespace std;
Calculator::Calculator()
{
num1 = 0;
num2 = 0;
oper = NONE;
}
void Calculator::store(double value) {
num2 = value;
}
double Calculator::handleOperation(Calculator::opType newOperation)
{
if(oper == NONE)
{
num1 = num2;
oper = newOperation;
return num1;
}
else if(newOperation == SQRT)
{
num2 = sqrt(num2);
return num2;
}
else if(num1 > 0)
{
if(oper == ADD)
{
num1 = num1 + num2;
oper = newOperation;
return num1;
}
else if(oper == SUBTRACT)
{
num1 = num1 - num2;
oper = newOperation;
return num1;
}
else if(oper == MULTIPLY)
{
num1 = num1 * num2;
oper = newOperation;
return num1;
}
else if(oper == DIVIDE)
{
num1 = num1 / num2;
oper = newOperation;
return num1;
}
}
}
double Calculator::equalsPressed()
{
return handleOperation(oper);
oper = NONE;
}
void Calculator::clear()
{
num1 = 0;
num2 = 0;
oper = NONE;
}