<meta charset="utf-8">
<h1>PROGRAMA JUEGO DE LOTERIA</h1>
<script>
function saltarlinea() {
document.write("<br>");
document.write("<br>");
document.write("<br>");
}
function imprimir(frase) {
document.write(frase);
saltarlinea()
}
var limite = parseInt(prompt("Ingrese numero maximo"));
function sorteo(limite) {
ganador = Math.round(Math.random()* limite);
return(ganador);
}
var numeroLanzado = parseInt(prompt("Ingrese un número entre 0-" + limite));
if (numeroLanzado == sorteo(limite)) {
imprimir("usted acertó");
}
else {
imprimir("usted erró, el número pensado era " + ganador);
}
</script>
:`3