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

hdu-1036(格式题+精确度)

时间:2018-10-05 20:20:48      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:void   double   http   pre   show   scan   hdu   str   ==   

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

心得:注意,要进行四舍五入的精确可以用+0.5实现。

#include<iostream>
#include<cstring>
#include<cstdio>
using namespace std;
char str[20];
int main(void)
{
    double tim,dis;
    int pt,n,i,h,mm,ss,t1,t2;
    scanf("%d %lf",&n,&dis);
    while(~scanf("%d",&pt))
    {
        int fg=0;
        tim=0;
        for(i=0;i<n;i++)
        {
            scanf("%s",str);
            if(str[0]==-) fg=1;
            else
            {
                h=str[0]-0;
                mm=(str[2]-0)*10+(str[3]-0);
                ss=(str[5]-0)*10+(str[6]-0);
                tim+=h*3600+mm*60+ss;
            }
        }
        printf("%3d:",pt);
        if(fg==1)
        {
            printf(" -\n");
        }
        else
        {
            int sum=(int)(tim/dis+0.5);
            t1=sum/60,t2=sum%60;
            printf(" %d:%02d min/km\n",t1,t2);
        }
    }
    return 0;
}

 

hdu-1036(格式题+精确度)

标签:void   double   http   pre   show   scan   hdu   str   ==   

原文地址:https://www.cnblogs.com/2018zxy/p/9745661.html

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