fork download
  1. <?php
  2.  
  3. $x=$i*$i;
  4.  
  5. for($i=1;$i<10;$i++) {
  6. echo"{$i}*{$i}={$x}\n";
  7. }
  8. ?>
  9.  
  10. // your code goes here
Success #stdin #stdout #stderr 0s 82880KB
stdin
Standard input is empty
stdout
1*1=0
2*2=0
3*3=0
4*4=0
5*5=0
6*6=0
7*7=0
8*8=0
9*9=0

// your code goes here
stderr
PHP Notice:  Undefined variable: i in /home/Dwnqsx/prog.php on line 3
PHP Notice:  Undefined variable: i in /home/Dwnqsx/prog.php on line 3