Write a program to calculate simple interest.
Answers
Answered by
3
Answer:
search on google u will get a perfect answer as I am not confirm
Answered by
2
Answer:
C Exercises: Compute the simple interest
- Pictorial Presentation:
- Sample Solution:
- 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; } ...
- Flowchart:
- C programming Code Editor:
Similar questions