Advertisement
Viky__9

Controllo se il numero è primo

Jun 17th, 2021
226
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.         var n = prompt('Inserisci un numero: ');
  12. while (n < 0){
  13.    n = prompt('Inserisci un numero: ');
  14. }
  15.    
  16.  var div=1;
  17.  var conta=0;
  18.    
  19.  while(conta<=1 && div<=n/2) {
  20.    if(n%div==0)  {
  21.     conta++;   
  22.    }
  23.    div++;
  24.  }
  25.    
  26.  if (conta==1){
  27.    document.write('Il numero è primo ');
  28.  }  
  29.  else {
  30.     document.write('Il numero non è primo ');
  31.  }
  32.     </script>
  33. </body>
  34. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement