码迷,mamicode.com
首页 > 编程语言 > 详细

18.零起点学算法13——求2个时间之间的分钟数

时间:2018-09-28 00:09:37      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:int   clu   eof   stdio.h   style   nbsp   之间   div   turn   

#include<stdio.h>
int main()
{
    int h1,m1,h2,m2,s;
    while(scanf("%d:%d %d:%d",&h1,&m1,&h2,&m2)!=EOF)
    {
    s=(h1-h2)*60+m2-m1-1;
    printf("%d",s);
    }
    return 0;
}

 

18.零起点学算法13——求2个时间之间的分钟数

标签:int   clu   eof   stdio.h   style   nbsp   之间   div   turn   

原文地址:https://www.cnblogs.com/Estwind/p/9716211.html

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