<!DOCTYPE html>
<html lang="pt-BR">
<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>Document</title>
</head>
<body>
<input type="number" name="txtn1" id="txtn1">
<input type="button" value="Compare com o meu segredo!" onclick="chute ()">
<script>
function pl (){
document.write ('<br><br>')
}
function show (frase){
document.write (frase);
pl ();
}
function s (n){
return Math.round (Math.random () * n);
}
function chute (){
var numeropensado = s (10)
var chute = document.getElementById ('txtn1')
var nchute = Number (chute.value);
if (nchute == numeropensado){
show ('Você acertou!')
} else if (nchute > numeropensado){
show ('Você errou! Chutou um número mais alto!');
} else {
show ('Você errou chutou um número mais baixo! ')
}
}
</script>
</body>
</html>