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

HDU 1064(求平均数 **)

时间:2018-09-07 13:58:49      阅读:184      评论:0      收藏:0      [点我收藏+]

标签:cli   ret   运行时   scanf   splay   bit   col   name   题目   

题意是求 12 个浮点数的平均数,这题不用读题,看到运行时间为 200 ms 再看下样例就能猜出题目的要求了,代码如下:

技术分享图片
 1 #include <bits/stdc++.h>
 2 using namespace std;
 3 int main()
 4 {
 5     double a,ans(0);
 6     for(int i = 0; i < 12; ++i)
 7     {
 8         scanf("%lf",&a);
 9         ans += a;
10     }
11     printf("$%.2lf\n",ans/12);
12     return 0;
13 }
View Code

 

HDU 1064(求平均数 **)

标签:cli   ret   运行时   scanf   splay   bit   col   name   题目   

原文地址:https://www.cnblogs.com/Taskr212/p/9603790.html

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