首頁 >後端開發 >C++ >C語言公式計算利息金額

C語言公式計算利息金額

PHPz
PHPz轉載
2023-09-10 18:45:051936瀏覽

C語言公式計算利息金額

問題

寫一個C程序,計算存款金額在一些年後的增加利息

解決方案

#計算利息的公式為−

M=((r/100) * t);
A=P*exp(M);

Where r= rate of interest

            t=no. of years

         ” M=temporary variable

            A= Final amount after interest

演算法

START
Step 1: declare double variables
Step 2: read amount to be deposited
Step 3: read rate of interest
Step 4: read years you want to deposit
Step 5: Calculate final amount with interest
         I. M=((r/100) * t);
         II. A=P*exp(M);
Step 6: Print final amount
STOP

範例

rrreee###輸出###rrreee###

以上是C語言公式計算利息金額的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除