码迷,mamicode.com
首页 > 其他好文 > 详细

HDU 1064 Financial Management

时间:2014-08-28 03:13:38      阅读:199      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   for   ar   art   div   

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

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

bubuko.com,布布扣
1 main()
2 {
3     double i = 1,x,tot = 0;
4     for(i = 1;i <= 12;++i)
5     scanf("%lf",&x),tot += x;
6     printf("$%.2lf\n",tot / 12);
7 }
View Code

 

HDU 1064 Financial Management

标签:style   blog   http   color   os   for   ar   art   div   

原文地址:http://www.cnblogs.com/xiaxiaosheng/p/3940704.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!