

InterviewSolution
Saved Bookmarks
1. |
Algorithm to find the compound interest |
Answer» Answer: Step 1:Start. Step 2:Read Principal Amount, Rate and Time. Step 3:Calculate Interest using formula SI= ((amount*rate*time)/100) Step 4:PRINT Simple Interest. Step 5:STOP. // CPP program to find compound interest for. // given values. #INCLUDE |
|