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

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:8:9: error: expected ';' before numeric constant
     h=s 13600;
         ^
Main.cc:9:17: error: expected ';' before numeric constant
     m=(s-h*3600)160;
                 ^