迷彩服阿绿 • 7天前
using namespace std;
int main() {
int n, s, f, m; cin >> n; s = n / 3600; f = n % 3600 / 60; m = n % 60; cout << s << ':' << f << ':' << m; return 0;
}
评论:
请先登录,才能进行评论