fork download
  1. <?php
  2. function summa($procent,$komi,$schet){
  3. $deposit=5000.0;
  4. $dolg=1000;
  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.  
  12. $pereplata=$pereplata + $vsego;
  13. break;
  14. }
  15. else{
  16. $dolg = $vsego - $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
 1540
 2030
 8020