Q:

Write a PHP program to compute the amount of the debt in n months

0

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) .

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

<?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

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now