Write a PHP program to compute the amount of the debt in n months. The borrowing amount is $100,000 and the loan adds 5% interest of the debt and rounds it to the nearest 1,000 above month by month.
Input:An integer n (0 ≤ n ≤ 100) .
<?php fscanf(STDIN, '%d', $n); $debt = 100000; for($i=0; $i<$n; $i++){ $debt = ceil(($debt * 1.05)/1000) * 1000; } echo "\nAmount of debt: "; echo $debt. PHP_EOL; ?>
Sample Output:
Amount of debt: 137000
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
Sample Output:
need an explanation for this answer? contact us directly to get an explanation for this answer