Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
5146 余文涛 时分秒转换 C++ 解答错误 0 0 MS 252 KB 286 2020-07-27 20:13:19

Tests(0/2):


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


测评信息: