<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();
}
function sortea(n) {
return Math.round(Math.random()*n);
}
var numeroPensado = 5;
var intentos = 3;
var contador = 1;
while(contador <= intentos) {
var numeroLanzado = parseInt(prompt("Ingrese un número entre 0-10"))
if (numeroPensado == numeroLanzado) {
alert("¡Acertó en el intento #" + contador + "! (el numero pensado era " + numeroPensado + ")");
break;
}
else {
alert("¡Intento fallido! " + contador);
}
contador++;
}
imprimir("¡FIN!");
</script>