Computer Science, asked by dddanielrogers, 6 hours ago

write a program to find and display the simple interest when P =Rs5000,T=5yrs,R=3%​

Answers

Answered by suyashgupta826
0

class abc

{

void solve()

{

int P=5000,T=5,R=3;

double ans=P*R*T/100.0;

}

}

Similar questions