Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
1195 大聪明 时分秒转换 C++ 编译错误 0 0 MS 0 KB 193 2019-10-06 11:11:20

Tests(0/0):


#include using namespace std;int main(void) { int t, h, m, s; cin >> t; h = t / 3600; m = t / 60 % 60; s = t%60; cout << h << "小时" << m << "分" << s <<"秒" << endl; return 0; }


测评信息: