<meta charset="utf-8">
<h1> PROGRAMA DE ADIVINACÍON </h1>
<br>
<br>
<script>
function imprimir (frase) {
document.write(frase);
saltarlinea();
}
function saltarlinea() {
document.write("<br>");
document.write("<br>");
}
function loteria () {
return Math.round(Math.random() * 10);
}
var nLoteria = loteria()
var numeroLanzado = parseInt(prompt("Ingrese un numero entre cero y diez."));
if (nLoteria == numeroLanzado) {
imprimir("Usted acerto")
}
//if (numeroSistema != numeroLanzado) {
else {
imprimir("Usted ha fallado. El numero correcto era " + loteria())
}
</script>