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>
- let numero =prompt("Dimmi un numero");
- document.writeln("Hai inserito " + numero );
- let i=1;
- let contoDivisori=0;
- do{
- if(numero%i==0)
- {
- document.writeln("<br>Il numero è un divisore: " + i);
- console.log(i);
- contoDivisori++;
- }
- // else {System.out.println("Il numero non e un divisore : " + i);}
- i++;
- }while(i<=numero);
- document.writeln("<br>Il num tot dei divisori è: " + contoDivisori);
- </script>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement