Advertisement
NameL3ss

Primos :B

Sep 13th, 2014
284
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. <html>
  2. <head>
  3. </head>
  4. <body>
  5.  
  6. <script type="text/javascript">
  7.  
  8. var p = 2;
  9. var c = 1;
  10. var d = 2;
  11.  
  12.  
  13. while (c <= 1000) {
  14. if (p % d == 0) {
  15. if (p == d) {
  16.  
  17. document.write(p + ", ");
  18. c++;
  19. }
  20. d = 2;
  21. p++;
  22. }
  23. else
  24. d++;
  25. }
  26.  
  27.  
  28. </script>
  29.  
  30. </body>
  31. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement