<!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>Document</title>
</head>
<body>
<h2>PROGRAMA JUEGO DE ADIVINACION</h2>
<script>
function saltarLinea() {
document.write("<br>");
document.write("<br>");
}
function imprimir(frase) {
document.write("<big>" + frase + "</big>");
saltarLinea();
}
function loteria(num) {
var sorteo = Math.round(Math.random() * num);
return sorteo;
}
var numero = loteria(10);
var num_usuario = parseInt(prompt("Ingrese un numero del 0 al 10:"));
if (numero == num_usuario) {
imprimir("Usted ha acerto el número: " + num_usuario);
} else if (num_usuario > numero) {
imprimir(
"No ha acertado el número, el numero pensado era: " + numero
+ "<br>" + "Usted lanzo un número mayor al pensando: " + num_usuario
);
} else {
imprimir(
"No ha acertado el número, el numero pensado era: " + numero
+ "<br>" + "Usted lanzo un número menor al pensado: " + num_usuario
);
}
</script>
</body>
</html>