Viết chương trình tính lãi Ngân hàng đơn giản

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

3. Nhập vào lãi suất

4. Tính SI = (principle * time * rate) / 100.

Code tham khảo:


#include <stdio.h>
int main()
{
// 1. Input principal amount (tiền gốc) in some variable say principle.
float principle, time, rate, simple_interest;
printf("Enter principle (amount): ");
scanf("%f", &principle);
// 2. Input time in time variable (theo năm)
printf("Enter time: ");
scanf("%f", &time);
// 3. Input rate in rate variable.
printf("Enter rate: ");
scanf("%f", &rate);

// 4. Find simple interest using formula SI = (principle * time * rate) / 100.
simple_interest = (principle * time * rate) / 100;
// 5. Print the resultant value of SI.
printf("Simple Interest = %f", simple_interest);

return 0;
}