Viết chương trình tính lãi gộp (Compound Interest)
Các bước thực hiện:
1. Nhập vào số tiền gốc
2. Nhập vào thời gian (theo năm)
3. Nhập vào lãi suất tiết kiệm
4. Tính lãi gộp theo công thức: CI = tiền gốc * pow((1 + lãi suất / 100), thời gian)
5. In ra lãi gộp
Code tham khảo:
int main()
{
float principle, rate, time, comp_interest;
// 1. Input principle amount
printf("Enter principle (amount): ");
scanf("%f", &principle);
// 2. Input time
printf("Enter time: ");
scanf("%f", &time);
// 3. Input rate
printf("Enter rate: ");
scanf("%f", &rate);
// 4. Calculate compound interest using formula, CI = principle * pow((1 + rate / 100), time).
comp_interest = principle * (pow((1 + rate / 100), time));
// 5. Print the compound Interest.
printf("Compound Interest = %f", comp_interest);
}
0 Nhận xét