Compañero probrar el cod un placer estar ene ste curo gracias a los profesores y a oracle por este gran curso
<meta charset="UTF-8">
<h1> JUEGO DE ADIVINANSA </h1>
<script>
function saltar(){
document.write ("<br>");
document.write ("<br>");
document.write ("<br>");
document.write ("<br>");
}
function prim(leer){
document.write(leer);
saltar();
}
function numeropc(min,max){
return Math.floor(Math.random() * (max - min + 1 ) + min);
}
var numeropc = numeropc(0,10);
var numerouser = parseInt(prompt ("Señor usuario ingrese un numero del 0 al 10 "));
if (numerouser== numeropc){
prim("Numero correcto ");
}
// diferete
if (numerouser != numeropc) {
prim("Numero incorrecto intente denuevo el nmero elegido por la pc es: " + numeropc);
}
</script>