Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
5147 余文涛 时分秒转换 C++ 通过 100 0 MS 252 KB 291 2020-07-27 20:17:38

Tests(2/2):


#include<bits/stdc++.h> using namespace std; int main(){ int n,m,f,s; cin>>n; if(n<=60){ m=n; f=0; s=0; }else if(n<=3600){ m=n%60; f=n/60; s=0; }else if(n>3600){ s=n/3600; f=(n-s*3600)/60; m=(n-s*3600)%60; } cout<<s<<":"<<f<<":"<<m; return 0; }


测评信息: