fork download
  1. <?php
  2. for($j = 60 , $i = 1; $j >=0 ;$j-=5 , $i+= 3 ){
  3. echo "I=".$i." J=".$j."\n";
  4. }
  5.  
  6. // your code goes here
Success #stdin #stdout 0.02s 52432KB
stdin
Standard input is empty
stdout
I=1 J=60
I=4 J=55
I=7 J=50
I=10 J=45
I=13 J=40
I=16 J=35
I=19 J=30
I=22 J=25
I=25 J=20
I=28 J=15
I=31 J=10
I=34 J=5
I=37 J=0