<!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>Document</title>
</head>
<body>
<script>
function saltarLinea() {
document.write("<br><br><br><hr><br><br>");
}
function imprimir(frase) {
document.write("<big>"+ frase + "</big>");
saltarLinea();
}
var numeroPensado = Math.round(Math.random()*10);
var intentos = 0;
for(intentos = 1; intentos <= 3; intentos++ ){
var numeroLanzado = parseInt(prompt("Ingrese un numero entre el 0-10"));
if( numeroLanzado < numeroPensado){
alert("Es mayor que: "+ numeroLanzado);
}
else if (numeroLanzado > numeroPensado){
alert("Es menor que: " + numeroLanzado);
}
else if(numeroLanzado == numeroPensado){
alert("Felicidades, acertaste. El numero pensado era: " + numeroPensado);
imprimir("FIN EL JOGO");
imprimir("Numero de intentos: " + intentos);
break;
}
else{
alert("NO pongas numeros fueras del rango o caracteres");
}
}
if (intentos > 3) {
alert("Has perdido :P");
imprimir("FIN EL JOGO");
}
</script>
</body>
</html>