解题思路:
注意事项:
参考代码:
#include<iostream>
#include<cstdio>
#include<math.h>
using namespace std;
int main()
{
double y,x,p,k,b;
int n,a;
cin>>k>>n>>p;
x=k; a=n;
while(a!=0){
y=k*p;//每个月所得利润
x*=(1+p);//未存钱时本金加利息
x+=k;//又存入k元后本金
a--;
}
b=x-(n+1)*k;
b=floor(100*b); b/=100; //保留两位小数,不四舍五入
printf("%.2f",b);
return 0;
}
0.0分
0 人评分