Advertisement
LightProgrammer000

Adivinhação

Jun 12th, 2024
352
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <!DOCTYPE html>
  2. <!--
  3. Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
  4. Click nbfs://nbhost/SystemFileSystem/Templates/Other/html.html to edit this template
  5. -->
  6. <html>
  7.     <head>
  8.         <title> Adivinhação </title>
  9.         <meta charset="UTF-8">
  10.         <meta name="viewport" content="width=device-width, initial-scale=1.0">
  11.     </head>
  12.     <body>
  13.        
  14.         <script>
  15.            
  16.             // Variaveis automática - Sorteia um número de 0 a 100
  17.             var autoNum = Math.round(100 * Math.random());
  18.             var num;
  19.             var ultimoNumero;
  20.             var tentativas = 0;
  21.            
  22.             //
  23.             while(num !== autoNum && tentativas < 10)
  24.             {
  25.                 if (tentativas == 0)
  26.                 {
  27.                     num = prompt("# Adivinhe o número ? (ex: 0 - 100): ");
  28.                     tentativas += 1;                    
  29.                 }
  30.                
  31.                 else if (tentativas > 0)
  32.                 {
  33.                     num = prompt("# Ultimo numero digitado: " + num +
  34.                                  "\n# Adivinhe o número ? (ex: 0 - 100): ");
  35.                                  
  36.                     tentativas += 1;
  37.                 }
  38.                
  39.                
  40.                 if (num == autoNum)
  41.                 {
  42.                     window.location.href = "https://pastebin.com/u/LightProgrammer000";
  43.                     break;                    
  44.                 }
  45.                
  46.                 else if (num > autoNum)
  47.                 {
  48.                     alert("O número é menor, tente novamente...");                    
  49.                 }
  50.                
  51.                 else
  52.                 {
  53.                     alert("# O número é maior, tente novamente...");
  54.                 }
  55.                
  56.                 ultimoNumero = num;
  57.             }
  58.            
  59.             document.write("<h4> O número sorteado era: " + autoNum + "<br></h4>");
  60.             document.write("<h4> Você usou " + tentativas + " tentativas ! </h4>");
  61.         </script>
  62.     </body>
  63. </html>
  64.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement