Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <!--
- Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
- Click nbfs://nbhost/SystemFileSystem/Templates/Other/html.html to edit this template
- -->
- <html>
- <head>
- <title> Adivinhação </title>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- </head>
- <body>
- <script>
- // Variaveis automática - Sorteia um número de 0 a 100
- var autoNum = Math.round(100 * Math.random());
- var num;
- var ultimoNumero;
- var tentativas = 0;
- //
- while(num !== autoNum && tentativas < 10)
- {
- if (tentativas == 0)
- {
- num = prompt("# Adivinhe o número ? (ex: 0 - 100): ");
- tentativas += 1;
- }
- else if (tentativas > 0)
- {
- num = prompt("# Ultimo numero digitado: " + num +
- "\n# Adivinhe o número ? (ex: 0 - 100): ");
- tentativas += 1;
- }
- if (num == autoNum)
- {
- window.location.href = "https://pastebin.com/u/LightProgrammer000";
- break;
- }
- else if (num > autoNum)
- {
- alert("O número é menor, tente novamente...");
- }
- else
- {
- alert("# O número é maior, tente novamente...");
- }
- ultimoNumero = num;
- }
- document.write("<h4> O número sorteado era: " + autoNum + "<br></h4>");
- document.write("<h4> Você usou " + tentativas + " tentativas ! </h4>");
- </script>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement