Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
4920 王冯俊 时分秒转换 C++ 解答错误 0 0 MS 188 KB 171 2020-07-25 18:48:01

Tests(0/2):


#include <stdio.h> int main() { int n; while(scanf("%d",&n)!=EOF) { printf("%02d:%02d:%02d\n",n/3600,n%3600/60,n%60); } return 0; }


测评信息: