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

CodeForces 622B The Time

时间:2016-02-15 10:40:43      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:

水题。

#include <stdio.h>
#include <algorithm>
#include <string.h>
#include <queue>
#include <stack>
#include <map>
#include <vector>
using namespace std;

int h,m,a;

int main()
{
    scanf("%d:%d",&h,&m);
    scanf("%d",&a);
    int mm=(h*60+m+a)%(24*60);
    printf("%02d:%02d\n",mm/60,mm%60);
    return 0;
}

 

CodeForces 622B The Time

标签:

原文地址:http://www.cnblogs.com/zufezzt/p/5189984.html

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