<meta charset = "UTF-8">
<h1> !SORTEO! </h1>
<script>
function saltarlinea(){
document.write("<br>");
document.write("<br>");
document.write("<br>");
}
function imprimir(mensaje){
document.write( mensaje);
saltarlinea();
}
function sorteo (n){
return Math.round(Math.random()*n);
saltarlinea();
}
var numeroPensado = sorteo(10);
var numeroLanzado = parseInt (prompt("Ingrese un numero"));
if (numeroPensado == numeroLanzado){
imprimir("¡Usted adivinó el numero!");
}
else {
imprimir ("Usted no acertó, el nùmero pensado era: " + numeroPensado);
}
</script>