-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
58 lines (49 loc) · 1.38 KB
/
script.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
"use strict";
document.querySelector('#calcular2').addEventListener('click', () =>{
const n1 = parseInt(document.querySelector('#n11').value);
const n2 = parseInt(document.querySelector('#n22').value);
const op2 = document.querySelector('#op').value;
let r;
if(op2 == '+'){
r = n1 + n2;
}else if( op2 == '-'){
r = n1 - n2;
}else if(op2 == '*'){
r = n1 * n2;
}else if(op2 == '/'){
r = n1 / n2;
}
document.querySelector('#r2').innerHTML = r;
});
/*let a, b;
let operacion;
a = parseFloat(prompt("Ingrese el primer numero"));
b = parseFloat(prompt("Ingrese el segundo numero"));
operacion = prompt("¿Qué operación quieres realizar? (suma, resta, multiplicacion, division)");
if (operacion === "suma") {
alert(suma(a, b));
} else if (operacion === "resta") {
alert(resta(a, b));
} else if (operacion === "multiplicacion") {
alert(multiplicacion(a, b));
} else if (operacion === "division") {
if (b === 0) {
alert("No se puede dividir por cero.");
} else {
alert(division(a, b));
}
} else {
alert("no se puede dividir entre 0");
}
function suma(a, b) {
return a + b;
}
function resta(a, b) {
return a - b;
}
function multiplicacion(a, b) {
return a * b;
}
function division(a, b) {
return a / b;
}*/