Advertisement
Viky__9

restituisce i divisori di un numero

Jun 17th, 2021
287
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7.     <title>Document</title>
  8. </head>
  9. <body>
  10.  <script>
  11.  
  12.  
  13. let numero =prompt("Dimmi un numero");
  14.     document.writeln("Hai inserito " + numero );
  15.     let i=1;
  16.     let contoDivisori=0;
  17.     do{
  18.        if(numero%i==0)
  19.        {
  20.            document.writeln("<br>Il numero è un divisore: "  + i);
  21.            console.log(i);
  22.            contoDivisori++;
  23.        }
  24.       //  else {System.out.println("Il numero non e un divisore : " + i);}
  25.         i++;
  26.     }while(i<=numero);
  27. document.writeln("<br>Il num tot dei divisori è: " + contoDivisori);
  28.  
  29.  
  30.  </script>
  31. </body>
  32. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement