Advertisement
Guest User

Untitled

a guest
Apr 24th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. this.rysujP=function(a,b){
  2. for(i=0; i<a; i++){
  3. for(j=0; j<b; j++){
  4. document.write(" * ");
  5. }
  6. document.write('<br>');
  7. }
  8. document.write("Pole: "+(a*b)+'<br>' ) ;
  9. document.write("Obwod: "+(2*a+2*b)+'<br>');
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement