Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
126276 唐洪盛 05拆分时间 C++ Compile Error 0 MS 0 KB 176 2025-07-17 15:47:26

Tests(0/0):


Code:

#include<bits/stdc++.h> using namespace std; int main() { int x,s; cin>>x; s=x/3600; f=x/60; m=x/1; cout<<s<<" "<<f<<" "<<m; return 0; }


Run Info:

Main.cc: In function 'int main()':
Main.cc:7:5: error: 'f' was not declared in this scope
     f=x/60;
     ^
Main.cc:8:5: error: 'm' was not declared in this scope
     m=x/1;
     ^