题解 | 时间转换
时间转换
https://www.nowcoder.com/practice/c4ae7bcac7f9491b8be82ee516a94899
#include <stdio.h>
int main() {
int seconds, h, m, s;
scanf("%d", &seconds);
h = seconds / 3600;
m = seconds % 3600 / 60;
s = seconds % 3600 % 60;
printf("%d %d %d", h, m, s);
return 0;
}

查看12道真题和解析