Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2017
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. <html>
  2. <style>
  3. #wynik
  4. {
  5. margin-top:15px;
  6. width: 300px;
  7. height: 300px;
  8. border: 2px solid black;
  9. font-size: 20px;
  10. }
  11.  
  12. button
  13. {
  14. width: 115px;
  15. }
  16. </style>
  17.  
  18.  
  19. Cyfry
  20. <input id="a1">
  21. <input id="b1">
  22. <button onclick="pisz()" >RYSUJ</button>
  23.  
  24. <div id="wynik"></div>
  25.  
  26. <script>
  27. function pisz(){
  28. var a=document.getElementById('a1').value;
  29. var b=document.getElementById('b1').value;
  30. for(var i=1;i<=a;i++){
  31. for(var j=1;j<=b;j++)
  32. document.getElementById('wynik').innerHTML+=i;
  33. document.getElementById('wynik').innerHTML+="<br>";
  34. }
  35. }
  36. </script>
  37. <html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement