Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
126128 | 赵梓渊 | 桃子问题 | C++ | Compile Error | 0 MS | 0 KB | 129 | 2025-07-16 15:08:46 |
#include<bits/stdc++.h> using namespace std; int fblq(int a) { if(a==0) { return 0; } if(a==1) { return 0; }
Main.cc: In function 'int fblq(int)': Main.cc:9:1: error: expected '}' at end of input } ^ Main.cc:9:1: warning: control reaches end of non-void function [-Wreturn-type] } ^