write a program to calculate simple interest input p, n, rfrom the keyboard and calculate I using the equation pnr/100
Answers
Answered by
0
Answer:
Double p;
Double n;
Double r;
Double intrest = p*n*r *0.10
Similar questions