-
Notifications
You must be signed in to change notification settings - Fork 0
/
calculadora.js
278 lines (207 loc) · 7.96 KB
/
calculadora.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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
let display = document.querySelector("#display");// constante que recibe el display del html y lo pasa a js
display.textContent = "0";
let clearBoton = document.querySelector("#clearButton");
let puntoDecimal = document.querySelector("#puntoDecimal");
let deleteButton = document.querySelector("#delete");
let number1 = 0;
let number2 = 0;
let resultado = 0;
let operationStatus = true;
let operacionChoice = "";
let choice = 0;
document.addEventListener('keydown',tecladoInput);
function tecladoInput(e){
console.log(e)
let eventoTeclado = e.key;
switch(eventoTeclado){
case "1":
muestraPantalla("1");
break;
case "2":
muestraPantalla("2");
break;
case "3":
muestraPantalla("3");
break;
case "4":
muestraPantalla("4");
break;
case "5":
muestraPantalla("5");
break;
case "6":
muestraPantalla("6");
break;
case "7":
muestraPantalla("7");
break;
case "8":
muestraPantalla("8");
break;
case "9":
muestraPantalla("9");
break;
case "0":
muestraPantalla("0");
break;
case "-":
operadorChoice('-');
break;
case "+":
operadorChoice('+');
break;
case "*":
operadorChoice('x');
break;
case "/":
operadorChoice('/');
break;
case "Enter":
operatorIgual();
break;
default: null;
break;
}
}
clearBoton.addEventListener("click",clear)
function clear(){
number1 = 0;
number2 = 0;
resultado = 0;
operacionChoice = "";
choiceOperator = "";
choiceOperatorJs = "";
choiceOperatorFunc = "";
display.textContent = 0;
}
deleteButton.addEventListener('click',deleteNumber);
function deleteNumber(){
let moveNumber = display.textContent.slice(0,-1);
display.textContent = moveNumber;
}
function muestraPantalla(choice){ //funcion que recibe los numeros una vez que se selecciona algun boton con número
if(display.textContent === "0" || operationStatus === true ){ //verifica si el numero mostrado en pantalla es 0 o si hay un signo de operacion
display.textContent = choice; // de ser cierto muestra en pantalla el primer numero seleccionado
}
else if(choice === '.' && !display.textContent.includes('.')){ //cuando ya no es sero
display.textContent += choice; //concatena los numeros presionados
number1 = display.textContent;
} else if(choice !== '.'){
display.textContent += choice; //concatena los numeros presionados
number1 = display.textContent;
}
else {
null;
}
operationStatus = false;
}
function operadorChoice(choiceOperator){//funcion que recibe el operador seleccionado
number1 = parseFloat(display.textContent);//variable que toma los datos del display y almacena en variable
console.log(number1);
console.log(typeof number1);
console.log(choiceOperator);
console.log(typeof choiceOperator);
console.log(number1);
console.log(typeof number1);
let choiceOperatorJs = "";
console.log(choiceOperatorJs);
console.log(typeof choiceOperatorJs);
if(choiceOperator === '+'){
display.textContent = choiceOperator;//muestra en pantalla el operador presionado*/
choiceOperatorJs = '+';
console.log(number1);
console.log(choiceOperatorJs);
operator(number1,choiceOperatorJs);//invoca a la funcion operador y le pasa el numeor1 y el operador seleccionado*/
}
else if(choiceOperator === '-'){
display.textContent = choiceOperator;//muestra en pantalla el operador presionado*/
choiceOperatorJs = '-';
console.log(number1);
console.log(choiceOperatorJs);
operator(number1,choiceOperatorJs);//invoca a la funcion operador y le pasa el numeor1 y el operador seleccionado*/
}
else if(choiceOperator === 'x'){
display.textContent = choiceOperator;//muestra en pantalla el operador presionado*/
choiceOperatorJs = 'x';
console.log(number1);
console.log(choiceOperatorJs);
operator(number1,choiceOperatorJs);//invoca a la funcion operador y le pasa el numeor1 y el operador seleccionado*/
}
else if(choiceOperator === '/'){
display.textContent = choiceOperator;//muestra en pantalla el operador presionado*/
choiceOperatorJs = '/';
console.log(number1);
console.log(choiceOperatorJs);
operator(number1,choiceOperatorJs);//invoca a la funcion operador y le pasa el numeor1 y el operador seleccionado*/
}
else if(choiceOperator === 'exp'){
display.textContent = choiceOperator;//muestra en pantalla el operador presionado*/
choiceOperatorJs = 'exp';
console.log(number1);
console.log(choiceOperatorJs);
operator(number1,choiceOperatorJs);//invoca a la funcion operador y le pasa el numeor1 y el operador seleccionado*/
}
}
function operator(number1,choiceOperatorJs){
operationStatus = true;
number2 = 0;
let choiceOperatorFunc = choiceOperatorJs;
operadorIgual.addEventListener("click",operatorIgual);
function operatorIgual(){
let number2String = display.textContent;
console.log(number2String);
console.log(typeof number2String);
let number2Clean = number2String.replace(/[-]/gi,'').replace(/x/g,'').replace(/[/]/g,'')
console.log(number2Clean);
console.log(typeof number2Clean);
number2 = parseFloat(number2Clean);
console.log(number2);
console.log(typeof number2);
if(number2 === null){
}
if(choiceOperatorFunc === "+"){
resultado = number1 + number2;
console.log(resultado);
display.textContent = Number(resultado.toFixed(3));
number1=0;
resultado = 0;
choiceOperatorJs = "";
console.log(number1);
}
else if(choiceOperatorFunc === "-"){
resultado = number1 - number2;
console.log(resultado);
display.textContent = Number(resultado.toFixed(3));
number1=0;
resultado = 0;
choiceOperatorJs = "";
}
else if(choiceOperatorFunc === "x"){
resultado = number1 * number2;
console.log(resultado);
display.textContent = Number(resultado.toFixed(3));
number1= 1;
resultado = 0;
choiceOperatorJs = "";
choiceOperatorFunc = "";
}
else if(choiceOperatorFunc === "exp"){
resultado = number1 ** number2;
console.log(resultado);
display.textContent = Number(resultado.toFixed(3));
number1= 1;
resultado = 0;
choiceOperatorJs = "";
choiceOperatorFunc = "";
}
else if(choiceOperatorFunc === "/"){
resultado = number1 / number2;
console.log(resultado);
display.textContent = Number(resultado.toFixed(3));
number1 = resultado;
resultado = 0;
choiceOperatorFunc = "";
choiceOperatorJs = "";
}
}
}