Computer Science, asked by firozkhanbbl, 4 months ago

Write a program to calculate simple interest.

Answers

Answered by aryashweta1371
3

Answer:

search on google u will get a perfect answer as I am not confirm

Answered by Anonymous
2

Answer:

C Exercises: Compute the simple interest

  1. Pictorial Presentation:
  2. Sample Solution:
  3. C Code: #include<stdio.h> int main() { int p,r,t,int_amt; printf("Input principle, Rate of interest & time to find simple interest: \n"); scanf("%d%d%d",&p,&r,&t); int_amt=(p*r*t)/100; printf("Simple interest = %d",int_amt); return 0; } ...
  4. Flowchart:
  5. C programming Code Editor:
Similar questions