write a program to find and display the simple interest when P =Rs5000,T=5yrs,R=3%
Answers
Answered by
0
class abc
{
void solve()
{
int P=5000,T=5,R=3;
double ans=P*R*T/100.0;
}
}
Similar questions