fork download
  1. <?php
  2. $n=5;
  3. for($i=1;$i<=$n;$i++){
  4. for($j=1;$j<=$n;$j++){
  5. echo "*";
  6. if($j=$n){
  7. echo "e";
  8. }
  9. }
  10. echo "\n";
  11. }
Success #stdin #stdout 0.03s 26040KB
stdin
Standard input is empty
stdout
    *e
*e
*e
*e
*e