| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 134671 | 张咏灏 | 一起找规律 | C++ | Compile Error | 0 MS | 0 KB | 167 | 2025-10-31 20:28:53 |
#include<iostream> using namespace std; int main(){ int a=1,b=1; for(int i=0;i<30;i++){ b=b*2; cout<<a+b; a=b; return 0; }
Main.cc: In function 'int main()': Main.cc:10:1: error: expected '}' at end of input } ^