Simple Interest formula
Where,
P is the principal amount
T is the time and
R is the rate
Video:
Code:
![]() |
Formula |
P is the principal amount
T is the time and
R is the rate
Video:
Code:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
int main(){ | |
float principle, time, rate, SI; | |
/* Input principle, rate and time */ | |
printf("Enter principle (amount): "); | |
scanf("%f", &principle); | |
printf("Enter time: "); | |
scanf("%f", &time); | |
printf("Enter rate: "); | |
scanf("%f", &rate); | |
SI = (principle * time * rate) / 100; | |
printf("Simple Interest = %f", SI); | |
return 0; | |
} |
Keep Coding and Keep Learning :)