fork(4) download
  1. <?php
  2. function summa($procent,$komi,$schet){
  3. $deposit=5000.0;
  4. $dolg=39999;
  5. $pereplata=0.0+$schet;
  6. $month=1;
  7. $vsego=0;
  8. for($dolg;$dolg>=0;$month++){
  9. $vsego=$dolg*$procent+$komi;
  10. if ($vsego < $deposit){
  11. $dolg=$dolg*$procent+$komi;
  12. $pereplata=$pereplata + $dolg;
  13. break;
  14. }
  15. else{
  16. $dolg=$dolg*$procent+$komi-$deposit;
  17.  
  18. $pereplata=$pereplata + $deposit;}
  19.  
  20.  
  21. }
  22. return $pereplata;
  23. }
  24. $homoCredit = summa(1.04,500,0);
  25. $softCredit = summa(1.03,1000,0);
  26. $yagodaCredit = summa(1.02,0,7000);
  27.  
  28. echo "\n $homoCredit\n";
  29. echo " $softCredit\n";
  30. echo " $yagodaCredit\n";
Success #stdin #stdout 0.02s 52432KB
stdin
Standard input is empty
stdout
 56423.563121625
 61268.718210807
 51029.365496746