Header Ads

Header ADS

Program to Calculate simple interest by user

 
C program to Calculate simple interest by user

         हम  एक c program लिखेंगे जिसमे user principle(amount), rate और time डाले तो उसे उस amount पर interest यानी ब्याज प्राप्त हो सके जानते है कैसे c language में ऐसा program बनाया जा सकता है
Example: 
   Input  
       Enter principle:  1300
       Enter time:  3
       Enter rate:   7.5
  Output     
       Simple Interest  =  292.500000        


Simple Interest formula


Simple interest formula is given by.



Where,
P is the principle amount
T is the time and
R is the rate



  Program coding to calculate simple interest



/*Calculation of simple interest*/
     #include<stdio.h>
    #include<conio.h>    
   void main()
    {
     float r,p,n,si;   //declare float mean decimal  type variable
     printf("Enter principle:  ");      
     scanf("%f",&p);             //to take principle amount by user

     printf("Enter rate:  ");          
     scanf("%f",&t);            //to take rate by user

     printf("Enter time:  ");        
     scanf("%f",&r);           //to take time by user

     /*formula for simple interest*/
     si=(p*n*r)/100;
    
     /*to print resultant of si*/     printf("\nSimple interest is : %f",si);
   
      getch();
    }

Explanation:

    इस program में user कोई amount इंटर करेंगा तथा उस पर वार्षिक दर और time बतायेगा तो उसे उस amount पर interest (ब्याज) प्राप्त हो जायेगा 
  • सबसे पहले user को एक message दिखेगा कि वह कोई amount डाले user amount दशमलव में भी डाल सकता है इसके लिए हमने उस variable को store करने के लिए float type variable बनाया है उस value को लेने का काम scanf function का है scanf function के द्वारा हमने उस value को p के address में store करा दिया है 
  • इसी तरीके से हमने scanf function के द्वारा rate और time को user के द्वारा इनपुट करा के क्रमशः r और t variable में store करा दिया है 

  • formula का use करके हमने resultant value को si variable में store करा दिया 
  • si variable में store value को printf function की सहायता से प्रिंट करवा दिया 

Points to remember

  • float type के value को प्रिंट करने के लिए हम %f का use करते है न कि %d का |
  • variable declare करते समय ध्यान रखे कि हम variables का नाम numerical(12,85 etc) तथा keyboards (int, float etc )में नही दे सकते है c language में कुल 32 types के keyboards है  जो कि निम्न लिखित है 

autodoubleintstruct
breakelselongswitch
caseenumregistertypedef
charexternreturnunion
constfloatshortunsigned
continueforsignedvoid
defaultgotosizeofvolatile
doifstaticwhile

If you have any problem is coding comment me and visit my gmail raghavraj543@gmail.com. I'll try my best to solve your problem.

No comments

Powered by Blogger.