Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html lang="it">
- <head>
- <meta charset="UTF-8">
- <title>3.3.8 Es 6</title>
- <script>
- let scaduto=false;
- function scadenza() {scaduto=true;}
- setTimeout(scadenza, 30000);
- </script>
- </head>
- <body>
- <script>
- const numero = Math.floor(Math.random()* 10 + 1);
- let messaggio="";
- let tentativo=1;
- let indovinato=false;
- while (tentativo<6 && !indovinato && !scaduto) {
- let inserito=prompt(messaggio+"Tentativo n."+tentativo+". Che numero ho pensato?");
- if (inserito!=numero)
- { messaggio="Sbagliato!"; tentativo++;}
- else
- {indovinato=true;}
- }
- if (scaduto) alert("Peccato, tempo scaduto!");
- else {
- if (indovinato) alert("Bravo, hai indovinato!");
- else alert("Peccato, hai perso!");
- }
- </script>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement