Your IP : 216.73.217.78


Current Path : /home/seto/fin.anatollica.com/fi/
Upload File :
Current File : /home/seto/fin.anatollica.com/fi/test.php

<?php
$sum = 9900;
$perc = 17;
$exp = 12;


$st =($perc/100)/12;
$annu = ($st*pow(1+$st, $exp)) / (pow(1+$st, (int)$exp)-1);
$summ_p = $sum*$annu; // Ежемесячный
$summ =  ($sum*$annu)* $exp; // Общая сумма
$perc  = $perc;

echo '-------- '.pow(1+$st, (int)$exp);


echo 'Ежемесм '.$summ_p;

?>