| 123456789101112131415161718192021222324252627282930313233 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- </head>
- <body>
- <script>
- function f(n){
- if(n%3==0 && n%5==0 && n%7==0){
- return true;
- }else{
- return false;
- }
- }
- function f2(){
- var count = 0;
- for(var i=1;i<=1000;i++){
- if(f(i)){
- document.write(i+" ");
- count++;
- if(count%6==0){
- document.write("<br>");
- }
- }
- }
- }
- f2();
- </script>
- </body>
- </html>
|