要計算銀行定期存款的利息,需要知道以下幾個要素:
本金(Principal):存款的初始金額。
利率(Interest Rate):銀行規定的年利率。
存款期限(Tenure):存款的時間長度,通常以年為單位。
利息的計算公式為:
利息 = 本金 * 利率 * 存款期限
以下是一個用C語言計算銀行定期存款的示例代碼:
#include <stdio.h>
int main() {
double principal, interestRate, tenure, interest;
// 輸入要素
printf("請輸入本金(單位:元):");
scanf("%lf", &principal);
printf("請輸入年利率(例如,0.05表示5%%):");
scanf("%lf", &interestRate);
printf("請輸入存款期限(單位:年):");
scanf("%lf", &tenure);
// 計算利息
interest = principal * interestRate * tenure;
// 輸出結果
printf("存款利息為:%lf 元\n", interest);
return 0;
}
在運行程序時,按照提示輸入本金、利率和存款期限,即可計算出存款的利息。請注意,輸入的利率應是小數形式,例如輸入5%應輸入0.05。