<!DOCTYPE html>
<html lang="en">
<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>Juego de Lotería</title>
</head>
<body style="background-color: black; color:white; font-size:26px;">
<script>
function saltarlinea() {
document.write("<br>");
document.write("<br>");
document.write("<br>");
}
function imprimir(msg) {
document.write(msg);
saltarlinea();
}
function loteria(n) {
return Math.round(Math.random() * n)
}
var numeroPensado = loteria(Math.round(Math.random() * 100));
var adivinado = parseInt(prompt("Ingrese un Número entre 0 y 10"));
if (adivinado == numeroPensado) {
imprimir("Usted ganó!!!");
} else {
imprimir("Usted Falló, el número era " + numeroPensado)
}
</script>
</body>
</html>