<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Guess Game</title>
</head>
<body>
<script>
//----- Funciones -----
//Funcion sin parametro
function saltarLinea(){
document.write("<br>");
}
//Funcion con parametro
function print(texto){
saltarLinea();
document.write(texto);
}
</script>
<script>
var numThought = Math.round(Math.random()*10);
var intento = 3;
var cont = 1;
while(cont <= intento){
var numLaunched = parseInt(prompt("Ingrese un numero entre 0 - 10"));
if(numThought == numLaunched){
alert("Usted ah acertado en el intento "+cont);
break;
}else{
alert("Usted erro, el numero pensado era: "+numThought);
}
cont++;
}
if (numThought == numLaunched){
print("Usted ah acertado, en el intento " + cont + " el número pensado era " + numThought);
}else {
print("usted erró, el número pensado era " + numThought);
}
</script>
</body>
</html>