<script>
function saltarLinea() {
document.write("<br>");
}
function imprimir(frase) {
document.write(frase);
saltarLinea();
}
function sortea(params) {
return Math.round(Math.random() * params);
}
var numLimite = parseInt(prompt("ingrese el limite del sorteo"));
var numeroPensado = sortea(numLimite)
var intentoAdivinar = parseInt(prompt("ingrese un numero del 0 al " + numLimite));
if (numeroPensado == intentoAdivinar) {
imprimir("FELICITACIONES. Ganaste la loteria!!!")
} else {
if (numeroPensado > intentoAdivinar) {
imprimir("Estuviste cerca... El numero ganador es mayor");
}
if (numeroPensado < intentoAdivinar) {
imprimir("Estuviste cerca... El numero ganador es menor");
}
imprimir("El numero ganador es ..." + numeroPensado)
}
</script>