Write down the simple interest program using for loop in c

Here a C program to calculate simple interest using for loop.

main ( )
{
int p, n, count ;
float r, si ;
for ( count = 1 ; count <= 3 ; count = count + 1 )
{
printf ( “Enter values of p, n, and r ” ) ;
scanf ( “%d %d %f”, &p, &n, &r ) ;
si = p * n * r / 100 ;
printf ( “Simple Interest = Rs.%f\n”, si ) ;
}
}

Flow is here to understand more:

 

for loop flowchart
for loop flowchart

 

Leave a Reply