Java 计算复利程序
在本文中,我们将了解如何在Java中计算复利。复利使用以下公式计算:
Principle*(1+(rate / 100))^time – Principle
复利 - 对本金和累计利息收取的百分比利息。利率比单利高。
我们将探讨如何获取本金**金额**、**利率**和**期限**的用户输入,然后根据提供的公式计算复利。最后,您将了解如何在 Java 中针对**用户定义**值和**预定义**值实现此公式。
问题陈述
编写一个 Java 程序,使用公式计算复利。以下是演示:
输入
Enter a Principle number : 100000 Enter Interest rate : 5 Enter a Time period in years : 3
输出
The Compound Interest is : 15762.50000000001
不同的方法
以下是计算复利的不同方法:
对于用户自定义输入
以下是使用用户自定义输入计算复利的步骤:
- 使用来自java.util 包的Scanner 类导入所需的包。
- 定义一个用于捕获用户输入的扫描器对象。
- 提示用户输入以获取本金金额、利率和期限。
- 使用公式根据用户输入计算**复利**。
- 显示计算出的复利。
示例
在这里,输入是根据提示由用户输入的。您可以在我们的代码运行工具 中实时尝试此示例。
import java.util.Scanner; public class CompoundInterest { public static void main (String args[]){ double principle, rate, time, compound_interest; System.out.println("Required packages have been imported"); Scanner my_scanner = new Scanner(System.in); System.out.println("A Scanner object has been defined "); System.out.print("Enter a Principle number : "); principle = my_scanner.nextInt(); System.out.print("Enter Interest rate : "); rate = my_scanner.nextInt(); System.out.print("Enter a Time period in years : "); time = my_scanner.nextInt(); compound_interest = principle * (Math.pow((1 + rate / 100), time)) - principle; System.out.println("The Compound Interest is : " + compound_interest); } }
输出
Required packages have been imported A Scanner object has been defined Enter a Principle number : 100000 Enter Interest rate : 5 Enter a Time period in years : 3 The Compound Interest is : 15762.500000000015
对于预定义值
以下是使用预定义值计算复利的步骤:
- 通过重新定义**本金**、**利率**和**期限**的值来初始化变量。
- 显示预定义的本金金额、利率和期限。
- 使用公式中预定义的值计算复利。
- 显示计算出的复利。
在这里,整数已预先定义,其值将在控制台上访问和显示。
public class CompoundInterest{ public static void main (String args[]){ double principle, rate, time, compound_interest; principle = 100000; rate = 5; time = 3; System.out.printf("The Principle amount is %f \nThe interest rate is %f \nThe time period in years is %f " , principle, rate, time); compound_interest = principle * (Math.pow((1 + rate / 100), time)) - principle; System.out.println("\nThe Compound Interest is: " + compound_interest); } }
输出
The Principle amount is 100000.000000 The interest rate is 5.000000 The time period in years is 3.000000 The Compound Interest is: 15762.50000000001
广告