偷菜时间表(模拟) 题解:
P1053
发布于2024年5月13日 23:31
阅读数 396
#include<bits/stdc++.h>
using namespace std;
int n;
int m, h;
void gets_res()
{
h = (h + 13) % 24;
h = h + (m + 15) / 60; //加上分钟溢出的
m = (m + 15) % 60;
printf("%d:%d\n", h, m);
}
int main()
{
cin >> n;
while(n --)
{
scanf("%d:%d", &h, &m);
gets_res();
}
return 0;
}
登录后发布评论
暂无评论,来抢沙发