-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcalculator.js
174 lines (140 loc) · 5.39 KB
/
calculator.js
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
let display = document.getElementById("numbers");
let display2 = document.getElementById("numbers2");
let display3 = document.getElementById("history");
let buttons = Array.from(document.getElementsByClassName("button"));
let displayTxt = display.innerText = "0";
let display2Txt = display2.innerText = "";
let input = "";
let input2 = "";
let operator = "";
let percentige = function (a) {
return a / 100;
}
let sum = function (a, b) {
return a + b;
};
let subtract = function (a, b) {
return a - b;
};
let multiply = function (a, b) {
return a * b;
};
let divide = function (a, b) {
return a / b;
};
let action = function (a){
operator = a;
return operator;
}
let screen = function (a) {
input += a;
return input;
};
let screen2 = function(a) {
input2 = a;
return input2;
}
let operate = function () {
if (operator == "+") {
return (Math.round(sum(Number(input2), Number(input))*1000000)) / 1000000;
} else if (operator == "-") {
return (Math.round(subtract(Number(input2), Number(input))*1000000))/1000000;
} else if (operator == "x") {
return (Math.round(multiply(Number(input2), Number(input))*1000000))/1000000;
} else if (operator == "/" && input == "0") {
return "DIVISION NOT POSSIBLE !!!! ㋡";
} else if(operator == "/") {
return (Math.round(divide(Number(input2), Number(input))*1000000))/1000000;
} else if (operator == "%") {
return (Math.round(percentige(Number(input))*1000000))/1000000;
}
}
buttons.map( button => {
button.addEventListener("click", (e) => {
switch(e.target.innerText) {
case "⌦":
display.innerText = display.innerText.slice(0, -1);
input = input.slice(0, -1);
break;
case "AC":
display.innerText = "0";
display2.innerText = "";
input = "";
input2 = "";
operator = "";
display3.innerText = "";
break;
case "=":
display3.innerText += display.innerText
display2.innerText = "=" + " " + operate();
display.innerText = "";
break;
case "+":
case "-":
case "x":
case "/":
if (input && input2) {
display2.innerText = "=" + " "+ operate();
screen2(operate());
display3.innerText += (display.innerText + " ");
display3.innerText += (e.target.innerText + " ");
action(e.target.innerText);
display.innerText = "";
input = "";
} else if (input) {
screen2(display.innerText); //input2
display3.innerText += (display.innerText + " ");
action(e.target.innerText); //operator
display3.innerText += (e.target.innerText + " ");
display.innerText = "";
input = "";
} else if (display3.innerText == e.target.innerText) {
display.innerText += "";
display3.innerText += "";
} else if (!input && operator == "%") {
display3.innerText += (display.innerText + " ")
action(e.target.innerText);
display3.innerText += (e.target.innerText + " ");
input = "";
}
break;
case "%":
if (input && input2) {
input = input2 / 100 * input;
display2.innerText = "=" + " " + operate();
display3.innerText += (display.innerText + " ");
display3.innerText += (e.target.innerText + " ");
screen2(operate());
action("%") ;
display.innerText = "";
input = "";
} else if (input) {
action(e.target.innerText);
display2.innerText = "=" + " " + operate();
screen2(operate()); //input2 is the answer
display3.innerText += (display.innerText + " ");
display3.innerText += (e.target.innerText + " ");
display.innerText = "";
input = "";
}
break;
case ".":
if (Array.from(display.innerText).includes (".")) {
display.innerText += "";
} else if (display.innerText) {
display.innerText += ".";
screen(e.target.innerText);
}
break;
default:
if (display.innerText == "0" ) {
display.innerText = display.innerText.slice(0, -1);
display.innerText += e.target.innerText;
screen(e.target.innerText);
} else if (display.innerText.length <= 16) {
display.innerText += e.target.innerText;
screen(e.target.innerText);
}
}
})
})