| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 148023 | 罗迎甲 | 14兔子问题 | C++ | Compile Error | 0 MS | 0 KB | 237 | 2026-02-09 14:07:53 |
#include<bits/stdc++.h> using namespace std; int main(){ int x=0,y=1,z=0; for(int b=2;b<=8;b++){ z=y+z; y=x x=z; } cout<<x<<' '<<y<<' '<<z; return 0; }
Main.cc: In function 'int main()':
Main.cc:9:9: error: expected ';' before 'x'
x=z;
^