<meta charset="utf-8">
<h1>PROGRAMA JUEGO DE ADIVINACION</h1>
<script>
function saltarlinea() {
document.write("<br>");
document.write("<br>");
document.write("<br>");
}
function imprimir(frase) {
document.write(frase)
saltarlinea();
}
var numeroPensado = Math.round(Math.random()*10);
var intentos = 3;
var contador = 1;
while(contador <= intentos){
var numeroLanzado = parseInt(prompt("ingrese un numero entre 0-10"));
if (numeroPensado == numeroLanzado) {
alert("usted acertó, en el intento " + contador + " el numero pensado era " + numeroPensado);
break;
}
else {
alert("usted erró");
}
contador++;
}
imprimir("Usted erró, el numero pensado era " + numeroPensado);
imprimir("FIN");
</script>