simple interest program in c in hindi
Explanation
साधारण ब्याज बैंकिंग और आर्थिक क्षेत्रों में ऋण पर ब्याज शुल्क की गणना के लिए उपयोग की जाने वाली सुविधाजनक विधि है। यह कुछ गणितीय शब्दों की मदद से दिन-प्रतिदिन अनुमानित होता है।
Formula:-
Simple Interest = (P × R × T)/100
where P = Principal Amount, R = Rate per Annum, T = Time (years)
Algorithm:-
1.मूलधन, ब्याज और ऋण के समय को परिभाषित करें।
2.सूत्र में आवेदन करें।
3.साधारण ब्याज प्रिंट करें।
Complexity:-
O(1)
Solution:-
#include<stdio.h>
int main()
{
float P , R , T , SI ;
P =34000; R =30; T = 5;
SI = (P*R*T)/100;
printf("\n\n Simple Interest is : %f", SI);
return (0);
}
Output:-
Simple Interest is: 51000.000