Advertisement
Guest User

Untitled

a guest
Nov 13th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Tabliczka Mnożenia</title>
  6. <script type="text/javascript">
  7. var wiersze = prompt("ile wierszy?");
  8. var kolumny = prompt("ile kolumn?");
  9. if(wiersze == " "|| wiersze== null)
  10. wiersze = 10;
  11. if(kolumny== " " ||kolumny == null)
  12. kolumny = 10;
  13. createTable(wiersze, kolumny);
  14. function createTable(wiersze, kolumny)
  15. {
  16. var j=1;
  17. var output= "<table border='1' width= '500' cellpadding='5'>";
  18. for(i=1;i<=wiersze;i++)
  19. {
  20. output = output + "<tr>";
  21. while(j<=kolumny)
  22. {
  23.  
  24. output = output + "<td>"+ i*j + "</td>";
  25. j=j+i;
  26. }
  27.  
  28. output = output + "</tr>";
  29. j = 1;
  30. }
  31. output = output + "</table>";
  32. document.write(output);
  33. }
  34.  
  35. </script>
  36. </head>
  37. <body>
  38.  
  39.  
  40. </body>
  41. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement