本关任务:编写一个小程序,计算初始时该存入银行多少钱。任务具体描述如下: 假设银行一年整存整取的月息为1.875%,现在某人手头有一笔钱,他打算在今后5年中,每年年底取出12000元作为孩子来来年的教育金,到第5年孩子毕业时刚好取完这笔钱,现在请你帮他算一算第1年年初时他该存入银行多少钱?
1 #include <stdio.h> 2 #include <stdlib.h> 3 4 int main() 5 { 6 7 8 int years; 9 float rate; 10 double capital,deposite; 11 int i = 0; 12 char c; 13 14 scanf("%f%c,%d,%lf",&rate,&c,&years,&capital); 15 16 double a=12*rate/100; 17 printf("Input rate(month,%),years and capital,separated by a ',':\n"); 18 while (i < years) 19 { 20 deposite = (deposite + capital) /(1+ a); 21 i++; 22 } 23 24 printf("You need %.2f in the first year\n",deposite); 25 return 0; 26 }