Program to print the Simple interest in c-language

Program to print the Simple interest in c-language

#include<stdio.h>
int main()
{
float p,r,t,s;
printf("Enter principle value\n");
scanf("%f",&p);
printf("Enter rate of interest \n");
scanf("%f",&r);
printf("Enter time \n");
scanf("%f",&t);
s=(p*r*t)/100;
printf("Simple Interest=%f",s);
}

OUTPUT
Enter principle value
100
Enter rate of interest
2.5
Enter time
4
Simple Interest=10.000000

From above program you got the basis idea of formula implementation ,and also you aware to float data type.

If you like this program then you can share it and for any issues you can direct contact with me from Home Page.


For regular updates you can also follow my site.

Comments

Popular posts

Creative pattern of butterfly in C-language

Program to show present time and date in C-language

Introduction of C-language.

Program to cheque enter number is a perfect number or not using if else in C-language

Program to cheque four digits number is palindrome or not in C-language

Program to print the cube of a number in c-language

Simple Hello world program in c- language