| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 133683 | whs | 05求百位数的每一位数之和 | C++ | Compile Error | 0 MS | 0 KB | 104 | 2025-10-20 16:59:54 |
#include <iostream>; using namespace std; int main(){ int 897; cout<<897/128+897/99+897/112; }
Main.cc:1:20: warning: extra tokens at end of #include directive
#include ;
^
Main.cc: In function 'int main()':
Main.cc:4:9: error: expected unqualified-id before numeric constant
int 897;
^