博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
0309 复利计算
阅读量:6444 次
发布时间:2019-06-23

本文共 414 字,大约阅读时间需要 1 分钟。

#include
#include
main(){ double a,s,t; int c,y; printf("**************复利计算软件V1.0**************\n"); do { printf("*利率:"); scanf("%lf",&a); printf("*本金:"); scanf("%lf",&s); printf("*时间(年):"); scanf("%d",&y); printf("*复利次数:"); scanf("%d",&c); a=pow((1+a/c),c)-1; t=s*pow(1+a,y); printf("\t\t***年复利结果:%lf\n",t); }while(a!=0);}

  

转载于:https://www.cnblogs.com/whitestar/p/5264281.html

你可能感兴趣的文章
Delphi考虑sql注入 QuotedStr
查看>>
SpringBoot学习四:整合Mybatis分页插件 PageHelper
查看>>
java集成jpush实现客户端推送
查看>>
Swoole WebSocket 的应用
查看>>
219. 单页应用 会话管理(session、cookie、jwt)
查看>>
【比赛】百度之星2017 初赛Round B
查看>>
AFNetworking之AFSecurityPolicy深入学习
查看>>
JavaScript中的“this”
查看>>
Java中abstract class和interface的区别
查看>>
(OkHttp3+Gson)用MVP模式实现天气预报小demo
查看>>
5G时代下,优质内容依然短视频源码的核心竞争力
查看>>
别再写getter,setter方法了,用Lombok来简化你的代码吧
查看>>
依赖注入
查看>>
Anconda 3.7安装以及使用详细教程
查看>>
scala 学习笔记二 方法与函数
查看>>
微软职位内部推荐-SOFTWARE ENGINEER II
查看>>
如何用公式编辑器编辑直角三角形符号
查看>>
每日一个Linux命令 地址
查看>>
UI---设置Activity背景为透明
查看>>
晒晒名企大公司的工资收入
查看>>