Papadopolis

Untitled

Oct 3rd, 2011
199
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. i = 1;
  2. $ = "";
  3. do {
  4.     while(++k <= 9)
  5.         $ += "  ";
  6.        
  7.     for(y=1;y<i;++y)
  8.         $ += y;
  9.    
  10.     for(x=i;x>=1;--x)
  11.         $ += x;
  12.      
  13.     $ += "\n";
  14. } while(++i <= 9);
  15.  
  16. alert($);
  17.  
Advertisement
Add Comment
Please, Sign In to add comment