基础编程题目集 7-2 然后是几点 (15分)
程序员文章站
2022-03-14 09:48:17
...
#include <stdio.h>
int main()
{
int t, p;
int s, x;
scanf("%d %d", &t, &p);
x = (t / 100) * 60 + t % 100;
s = (x + p) / 60 * 100 + (x + p) % 60;
printf("%d", s);
}