<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ADIVINADOR</title>
</head>
<body>
<h1>ADIVINA EL NÚMERO</h1>
<script>
function mensaje(msg) {
document.write("<big>" + msg + "</big>");
}
function salto() {
var saltoLinea = mensaje("<br><hr><br>");
}
function imprimir(frase) {
mensaje(frase);
salto();
}
var numeroPensado = Math.round(Math.random() * 10);
var intentos = 3;
for (var contador = 1; contador <= intentos; contador++) {
var numeroParticipante = prompt("Adivine un número entre el 1 hasta el 10");
var total = (intentos - contador);
if (numeroPensado == numeroParticipante) {
alert("Felicidades!! Acertaste el número, era: " + numeroPensado);
break;
} else if (contador == intentos) {
alert("No acertaste... Perdiste. Reinicia el juego");
break;
} else {
alert("No acertaste... Tienes " + total + " oportunidades");
}
}
imprimir("FIN DEL JUEGO. REINICIA PARA VOLVER A JUGAR");
</script>
</body>
</html>