Saved Bookmarks
| 1. |
Write an algorithm to calculate the compound interest (C. I = Px(1 +r/100)n – P) |
|
Answer» Step 1 : Start Step 2 : Read 3 number for p,n,r Step 3 : Calculate Cl = p x(1+r/100)n – p Step 4 : Print “The compound Interest = C.I” Step 5 : Stop |
|