Java Exercises: Compute the amount of the debt in n months
Java Basic: Exercise-215 with Solution
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).
Sample Solution:
Java Code:
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
Flowchart:

Java Code Editor:
Contribute your code and comments through Disqus.
Previous: Write a Java program which solve the equation. Print the values of x, y where a, b, c, d, e and f are specified.
Next: Write a Java program which reads an integer n and find the number of combinations of a,b,c and d will be equal to n.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
Java: Tips of the Day
Java: ConvertInputStreamToString
Converts InputStream to a String.
public static String convertInputStreamToString(final InputStream in) throws IOException { ByteArrayOutputStream result = new ByteArrayOutputStream(); byte[] buffer = new byte[1024]; int length; while ((length = in.read(buffer)) != -1) { result.write(buffer, 0, length); } return result.toString(StandardCharsets.UTF_8.name()); }
Ref: https://bit.ly/2N1GDss
- Weekly Trends
- Java Basic Programming Exercises
- SQL Subqueries
- Adventureworks Database Exercises
- C# Sharp Basic Exercises
- SQL COUNT() with distinct
- JavaScript String Exercises
- JavaScript HTML Form Validation
- Java Collection Exercises
- SQL COUNT() function
- SQL Inner Join
- JavaScript functions Exercises
- Python Tutorial
- Python Array Exercises
- SQL Cross Join
- C# Sharp Array Exercises