<meta charset="UTF-8">
<h1>Juego de adivinacion</h1>
<script>
function saltarLinea() {
document.write("<br>");
document.write("<br>");
document.write("<br>");
}
function imprimir(frase) {
document.write("<big>" + frase + "</big>");
saltarLinea();
}
var numeroPensado = Math.round(Math.random () * 10);
var numeroLanzado = parseInt(prompt("Ingrese un numero entre 0 y 10"));
if (numeroPensado == numeroLanzado) {
imprimir("Usted acerto")
}
else {
imprimir("Ud. no acerto, el numero pensado fue " + numeroPensado);
}
</script>