fork(1) download
  1. <?php
  2.  
  3. $amountCredit = 40000;
  4. $percent = 0.03;
  5. $commission = 1000;
  6. $payment = 5000;
  7.  
  8. $amountPayment = 0;
  9. $finalPayment = 0;
  10.  
  11. for($month = 0; $amountCredit != 0; $month++){
  12. $amountCredit += $percent*$amountCredit + $commission;
  13. if ($amountCredit < $payment){
  14. $amountPayment += $amountCredit;
  15. $amountCredit -= $amountCredit;
  16. }else{
  17. $amountPayment += $payment;
  18. $amountCredit -= $payment;
  19. }
  20. }
  21. echo "Школьнику айфон обошелся в {$amountPayment} \n";
  22. echo "Избавился от долга за {$month}";
  23.  
  24. ?>
Success #stdin #stdout 0.02s 52472KB
stdin
Standard input is empty
stdout
Школьнику айфон обошелся в 61270.186744521 
Избавился от долга за 13