fork download
  1. <?php
  2. //variables
  3. $N = 100;
  4. $i = 0;
  5. $t = 5;
  6.  
  7. //while
  8. while($i<=$N){
  9. $m = ($i * $t);
  10. echo($m);
  11. $i++;
  12. }
  13.  
  14. ?>
Success #stdin #stdout 0s 82880KB
stdin
Standard input is empty
stdout
05101520253035404550556065707580859095100105110115120125130135140145150155160165170175180185190195200205210215220225230235240245250255260265270275280285290295300305310315320325330335340345350355360365370375380385390395400405410415420425430435440445450455460465470475480485490495500