Advertisement
Papadopolis

Untitled

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