首頁 > 後端開發 > C++ > 主體

C語言公式計算利息金額

PHPz
發布: 2023-09-10 18:45:05
轉載
1893 人瀏覽過

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
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!