-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
50 lines (48 loc) · 1.58 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
function mayor() {
var n1 = parseInt(document.getElementById('numero1').value);
var n2 = document.getElementById('numero2').value;
var n3 = parseInt(document.getElementById('numero3').value);
const DResultado = document.getElementById('resultado');
if(n1 == n2 && n2 == n3)
{
DResultado.innerHTML = alert("todos los numeros son iguales");
document,location.reload();
}
else
{
if(n1 == n3)
{
DResultado.innerHTML = alert("(numero 1 y numero 3) son iguales");
document,location.reload();
}
else
{
if(n1 == n2 && n2 == n3)
{
DResultado.innerHTML = alert("los tres numeros son iguales");
document,location.reload();
}
else
{
if(n1 == n2)
{
DResultado.innerHTML = alert("(numero 1 y numero 2) son iguales");
document,location.reload();
}
else
{
if(n2==n3)
{
DResultado.innerHTML = alert("(numero 2 y numero 3) son iguales");
document,location.reload();
}
else
{
var mayor = Math.max(n1,n2,n3);
DResultado.innerHTML = `<p>El Mayor es:</p><p>${mayor}</p>`;
}
}
}
}
}
}