<meta charset="utf-8">
<h1>PROGRAMA JUEGO DE ADIVINACIÓN</h1>
<script>
function saltarLinea() {
document.write("<br>");
document.write("<br>");
document.write("<br>");
}
function imprimir(frase){
document.write(frase);
saltarLinea();
}
function sorteo(numero){
return Math.round(Math.random() * numero);
}
var numeroPensado = sorteo(20);
var numeroLanzado = parseInt(prompt("Ingrese un número entre 0-10"));
if(numeroPensado == numeroLanzado){
imprimir("usted acertó");
}else{
imprimir("usted erró, el número pensado era " + numeroPensado);
}
</script>