Computer Science, asked by rhythempal15, 3 months ago

Wap to find simple interest by using #define​

Answers

Answered by Anonymous
9

Explanation:

C

#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);

Answered by sᴡᴇᴇᴛsᴍɪʟᴇ
40

Use this simple interest calculator to find A, the Final Investment Value, using the simple interest formula: A = P(1 + rt) where P is the Principal amount of money to be invested at an Interest Rate R% per period for t Number of Time Periods.

Similar questions