fork download
  1. <?php
  2.  
  3. for($x=1; $x<10; $x++) {
  4. echo "{$x}x{$x}=". $x * $x. "\n";
  5. }
  6.  
Success #stdin #stdout 0.02s 23768KB
stdin
Standard input is empty
stdout
1x1=1
2x2=4
3x3=9
4x4=16
5x5=25
6x6=36
7x7=49
8x8=64
9x9=81