Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- </head>
- <body>
- <script>
- var n = prompt('Inserisci un numero: ');
- while (n < 0){
- n = prompt('Inserisci un numero: ');
- }
- var div=1;
- var conta=0;
- while(conta<=1 && div<=n/2) {
- if(n%div==0) {
- conta++;
- }
- div++;
- }
- if (conta==1){
- document.write('Il numero è primo ');
- }
- else {
- document.write('Il numero non è primo ');
- }
- </script>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement