HDU 1064 Financial Management

时间:2021-08-25 18:59:53

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1064

解题报告:用来凑个题数吧,看题的时间比过题的时间多的多,就是输入12个浮点数,然后输出平均数,只是前面加个美元符号就行了,另外保留两位小数,快去水吧。

 main()
{
double i = ,x,tot = ;
for(i = ;i <= ;++i)
scanf("%lf",&x),tot += x;
printf("$%.2lf\n",tot / );
}