<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Loteria!</title>
</head>
<body>
<h1>Juego de la Loteria!!!</h1>
<script>
function saltoLinea(){
document.write("<br>");
}
function imprimir(frase){
document.write(frase);
}
function sortea(n){
return Math.round(Math.random() * n);
}
let numeropensado=sortea(10)
let numeroL=prompt("Ingrese un numero entre 0-10 ");
if (numeropensado==numeroL){
imprimir("Adivino, Ganastes!");
}/*else{
imprimir("Perdio, el numero pensado es: "+numeropensado); aca es la primera fase
}*/
else if(numeroL>numeropensado){
document.write("El numero era menor al numero que usted penso, perdiste");
}else{
imprimir("El numero pensado es mayor al numeor que uste penso, perdiste");
}
</script>
</body>