<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 adivinanzas</title>
</head>
<body>
<h1>Juego de adivinanzas</h1>
</body>
<script>
function saltarLinea() {
document.write("<br>");
document.write("<br>");
document.write("<br>");
}
function imprimir(frase) {
document.write(frase);
}
var numeroPensado = Math.round(Math.random() * 10);
var numeroLanzado = parseInt(prompt("ingrese un numero entre 0-10"));
if (numeroPensado == numeroLanzado) {
imprimir("Usted acerto el numero");
} else {
imprimir("Usted error el numero pensado era: " + numeroPensado);
}
</script>
</html>