Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
101468 陈奕涵 05拆分时间 C++ Accepted 1 MS 272 KB 241 2024-12-15 12:41:24

Tests(10/10):


Code:

#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() using namespace std; int main(){ int n,h,m,s; cin>>n; h=n/3600; m=(n-h*3600)/60; s=n%60; cout<<h<<" "<<m<<" "<<s; return 0; }