fork(1) download
  1. <?php
  2. $result = 0;
  3. for ($i=1; $i <= 10 ; $i++) {
  4. $result = $i * $i;
  5. echo "{$i} x {$i} = {$result}\n";
  6. }
Success #stdin #stdout 0.03s 23820KB
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
10 x 10 = 100