Computer Science, asked by adielfrank146, 23 hours ago

Write a program to calculate Simple interest?​

Answers

Answered by adtcms2020
2

include<stdio.h>

int main()

{

float P , R , T , SI ;

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

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

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

return (0);

Mark me the brainliest

Similar questions