Swift 程序计算简单利息
本教程将讨论如何编写一个 Swift 程序来计算简单利息。
简单利息是最常用的计算一定时期内金钱利息的方法。在这种方法中,利息始终按相同的利率应用于原始本金,每个时间段都相同。它是通过将利率乘以本金和时间来计算的。
公式
以下是简单利息的公式:
S.I = Principal Amount(P) x Time(T) x Rate(R)/100
其中
本金 (P) - 本金代表最初投资的金额。
利率 (R) - 利率代表在给定时间段内应用于本金的利率。
时间 (T) - 时间代表投资金额的年限。
计算简单利息的算法
步骤 1 - 定义三个变量(本金、利率和时间)
步骤 2 - 为这些变量赋值
步骤 3 - 实现简单利息公式(本金 (P) x 时间 (T) x 利率 (R)/100)
步骤 4 - 打印输出
示例
以下程序演示了如何计算简单利息。
import Foundation import Glibc var principal = 20000 var rate = 3 var time = 5 var SimpleInterest = (principal * time * rate)/100 print("Principal Amount is - ", principal,"rupees") print("Rate of the interest is - ", rate,"%") print("Time period is -", time, "Years") print("\nFinal simple interest is - ", SimpleInterest,"rupees")
输出
Principal Amount is - 20000 rupees Rate of the interest is - 3 % Time period is - 5 Years Final simple interest is - 3000 rupees
在上面的代码中,我们使用如下所示的数学公式计算简单利息:
var SimpleInterest = (principal * time * rate)/100
这里,本金、利率和时间分别为 20000、3 和 5,因此简单利息为 3000。
示例
以下程序演示了如何使用用户定义的输入计算简单利息。
import Foundation import Glibc print("Please enter the principal amount") var principal = Int(readLine()!)! print("Please enter the interest rate") var rate = Int(readLine()!)! print("Please enter the time period") var time = Int(readLine()!)! var SimpleInterest = (principal * time * rate)/100 print("\nEntered Principal Amount is - ", principal,"rupees") print("Entered Interest Rate is - ", rate,"%") print("Entered Time period is -", time,"Years") print("\nFinal simple interest is - ", SimpleInterest,"rupees")
标准输入
Please enter the principal amount 10000 Please enter the interest rate 4 Please enter the time period 5
输出
Entered Principal Amount is - 10000 rupees Entered Interest Rate is - 4 % Entered Time period is - 5 Years Final simple interest is - 2000 rupees
在上面的代码中,我们使用如下所示的数学公式计算简单利息:
var SimpleInterest = (principal * time * rate)/100
这里,本金、利率和时间段是使用 readLine() 函数在运行时从用户处获取的。因此,给定数据的简单利息为 3000。
广告