szybkiekonta

funkcja

Jan 22nd, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. <html>
  2. <head>
  3. <body>
  4. <script type="text/javascript">
  5. <!--
  6. function trzy(z)
  7. {
  8. for (var i = 0; i <= z; i++)
  9. if ((i%3) != 0)
  10. continue;
  11. document.write(i + "; ");
  12. }
  13. trzy(90);
  14. trzy(120);
  15. // -->
  16. </script>
  17. </body>
  18. </head>
  19. </html>
Add Comment
Please, Sign In to add comment