3.3
程序员文章站
2024-03-25 10:37:04
...
#include <stdio.h>
#include <stdlib.h>
int main()
{
int n;
float rate =0.0225;
float capital,deposit;
scanf("%f%d",&capital,&n);
deposit=capital+capital*rate*n;
printf ("%f\n",deposit);
return 0;
}
知识点:浮点型及scanf的基本用法。
心得体会:只要把各步骤写对,scanf里面要用心。
上一篇: python-pcl,点云滤波,平面分割
下一篇: opencv 读取并显示图像