首页 > 后端开发 > C++ > 正文

C语言公式计算利息金额

PHPz
发布: 2023-09-10 18:45:05
转载
1836 人浏览过

C语言公式计算利息金额

问题

编写一个C程序,计算存款金额在一些年后的增加利息

解决方案

计算利息的公式为 −

M=((r/100) * t);
A=P*exp(M);
登录后复制

Where r= rate of interest

            t=no. of years

            P=amount to be deposited

            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
登录后复制

示例

#include<stdio.h>
#include<math.h>
#include<ctype.h>
int main(){
   double P,r,t,A,M;
   printf("amount to be deposit in the bank: ");
   scanf("%lf",&P);
   printf("</p><p> enter the rate of interest:");
   scanf("%lf",&r);
   printf("</p><p> How many years you want to deposit:");
   scanf("%lf",&t);
   M=((r/100) * t);
   A=P*exp(M);
   printf("</p><p> amount after %0.1lf years with interest is:%0.2lf",t,A);
   return 0;
}
登录后复制

输出

amount to be deposit in the bank: 50000
enter the rate of interest:6.5
How many years you want to deposit:5
amount after 5.0 years with interest is:69201.53
登录后复制

以上是C语言公式计算利息金额的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:tutorialspoint.com
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!