-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
42 lines (37 loc) · 1.01 KB
/
index.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
let continuar
while( continuar != "No" ) {
let com = Math.random()
let jug = prompt( "¿Piedra, papel o tijera?" )
console.log( com )
if( com < 0.34) {
com = "Piedra"
}
else if( com >= 0.34 && com < 0.68) {
com = "Papel"
}
else {
com = "Tijera"
}
if( jug === com ) {
console.log( "Empate!" )
}
else if( jug === "Piedra" && com === "Papel" ) {
console.log( "Com gana... " + com + " envuelve " + jug )
}
else if( jug === "Piedra" && com === "Tijera" ) {
console.log( "Has ganado... " + jug + " daña " + com )
}
else if( jug === "Papel" && com === "Piedra" ) {
console.log( "Has ganado... " + jug + " envuelve " + com )
}
else if( jug === "Papel" && com === "Tijera" ) {
console.log( "Com gana... " + com + " daña " + jug )
}
else if( jug === "Tijera" && com === "Piedra" ) {
console.log( "Com gana... " + com + " daña " + jug )
}
else {
console.log( "Has ganado... " + jug + " daña " + com )
}
continuar = prompt( "¿Desea continuar?" )
}