fork download
  1. <?php
  2.  
  3. $amountAccount = 10000;
  4. $ageAnon = 16;
  5.  
  6. for($i = 0; $amountAccount <= 1000000; $i++){
  7. $amountAccount += 0.1*$amountAccount;
  8. }
  9.  
  10. echo "Сумма {$amountAccount} накоплена за {$i}\n";
  11. $ageAnon += $i;
  12. echo "Возраст анона {$ageAnon}";
  13.  
  14. ?>
Success #stdin #stdout 0.03s 52480KB
stdin
Standard input is empty
stdout
Сумма 1067189.5716336 накоплена за 49
Возраст анона 65