Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
148025 罗迎甲 14兔子问题 C++ Compile Error 0 MS 0 KB 235 2026-02-09 14:10:01

Tests(0/0):


Code:

#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;


Run Info:

Main.cc: In function 'int main()':
Main.cc:14:13: error: expected '}' at end of input
     return 0;
             ^