CTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Juego de Adivinacion</title>
</head>
<body>
<h1>Juego Adivinacion</h1>
<script type="text/javascript">
function saltarlinea () {
document.write("<br><br>");
}
function imprimir (phrase) {
document.write(phrase);
saltarlinea();
}
function sortea (n) {
n = Math.round(Math.random()*n);
return (n);
}
var numeroPensado = sortea(10)
var numeroElegido = parseInt(prompt("por favor elija un numero del 0-10"));
if (numeroPensado == numeroElegido) {
imprimir("Acertaste, felicidades!");
} else {
imprimir("Fallaste, el numero pensando era: " + numeroPensado);
}
</script>
</body>
</html>