#include<iostream> using namespace std; int main(){ float a,b,c,d,x; a=1000/(1+12*0.0063); b=(a+1000)/(1+12*0.0063); c=(b+1000)/(1+12*0.0063); d=(c+1000)/(1+12*0.0063); x=(d+1000)/(1+12*0.0063); printf("应存入的钱数为:%0.2f\n",x); return 0; }
标签:std,0.0063,12,打卡,第七天,1000 From: https://www.cnblogs.com/gjsgjs/p/17350971.html