Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
96396 陈治宸 05拆分时间 C++ Compile Error 0 MS 0 KB 195 2024-11-07 22:33:16

Tests(0/0):


Code:

#include <iostream> using namespace std; int main() { int s; cin>>s; int h,m; h=s*13600; m=(s-h*3600)160; s=s%60; cout<<h<<" "<<m<<" "<<s; return 0; }


Run Info:

Main.cc: In function 'int main()':
Main.cc:9:17: error: expected ';' before numeric constant
     m=(s-h*3600)160;
                 ^