Write a C program to find the simple interest , given principle,rate of interest and times

by Nideesh C on April 11, 2011 · 1 comment

in C Programming




/* Write a C program to find the simple interest , given principle, rate of interest and times*/

#include <stdio.h>
#include <conio.h>

void main()
{

float p, r, si;
int t;

clrscr();

printf(“Enter the values of p,r and t\n”);
scanf (“%f %f %d”, &p, &r, &t);

si = (p * r * t)/ 100.0;

printf (“Amount = Rs. %5.2f\n”, p);
printf (“Rate   = Rs. %5.2f%\n”, r);
printf (“Time   = %d years\n”, t);
printf (“Simple interest  = %5.2f\n”, si);

}

/*—————————–
Output
Enter the values of p,r and t
2000
8
3
Amount = Rs. 2000.00
Rate   = Rs.  8.00%
Time   = 3 years
Simple interest  = 480.00

——————————*/

Not Satisfied ? Just search & get the result

Related Posts Plugin for WordPress, Blogger...
Be Sociable, Share!

Related posts:

  1. Router Clock Rate,Bandwidth and Encapsulation Configuration
  2. Sample – Program to write in different fonts on the screen.
  3. C program to find the area of a triangle, given three sides
  4. C program to find the area of a circle, given the radius
  5. Sample – Program to convert days into years and weeks.

Leave a Comment

{ 1 trackback }

Previous post:

Next post: