fork download
  1. <?php
  2. for ($i = 1; $i < 10; $i++) {
  3. $result = $i * $i;
  4. echo "$i x $i = {$result}\n";
  5. }
Success #stdin #stdout 0.01s 82880KB
stdin
Standard input is empty
stdout
1 x 1 = 1
2 x 2 = 4
3 x 3 = 9
4 x 4 = 16
5 x 5 = 25
6 x 6 = 36
7 x 7 = 49
8 x 8 = 64
9 x 9 = 81