Q:

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

0

Write a Java program to compute the amount of the debt in n months. The borrowing amount is $100,000 and the loan adds 4% interest of the debt and rounds it to the nearest 1,000 above month by month

Input:

An integer n (0 ≤ n ≤ 100)

Expected Output:

Input number of months:
 6

Amount of debt: 
129000

All Answers

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

import java.util.Scanner;
public class Main { 
    public static void main(String[] args) {
   Scanner s = new Scanner(System.in);
   System.out.println("Input number of months:");
        int n = s.nextInt();
        double c = 100000;
        for(int i = 0; i < n; i++) {
            c += c*0.04;
            if(c % 1000 != 0) {
                c -= c % 1000;
                c += 1000;
            }             
        }
       System.out.println("\nAmount of debt: ");
        System.out.printf("%.0f\n",c);
    }
}

Sample Output:

Input number of months:
 6

Amount of debt: 
129000

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