Computer Science, asked by anshbhatia1972, 5 hours ago

WAP to find simple interest?​

Answers

Answered by mahikasultana7
0

1. #include<stdio.h>

2. int main()

3. float P , R , T , SI ;

4. P =34000; R =30; T = 5;

5. SI = (P*R*T)/100;

6. printf("\n\n Simple Interest is : %f", SI);

7. return (0);

Similar questions