fork download
  1. <?php
  2.  
  3. function staircase($n){
  4. foreach (range(1, $n) as $i)
  5. print( str_repeat(' ',$n-$i).str_repeat('#',$i)."\n");
  6. }
  7.  
  8. staircase(6);
  9.  
  10. /*
  11. shoud be:
  12.   #
  13.   ##
  14.   ###
  15.   ####
  16.  #####
  17. ######
  18. */
Success #stdin #stdout 0.01s 82560KB
stdin
Standard input is empty
stdout
     #
    ##
   ###
  ####
 #####
######