| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 147742 | 罗迎甲 | 百钱买百鸡II | C++ | Compile Error | 0 MS | 0 KB | 679 | 2026-02-07 15:00:46 |
#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ int n=0; int a=0; cin>>n; for(int x=0;x<=n/5;x++){ for(int y=0;y<=n/3;y++){ for(int z=0;z<=n*3;z++){ if(x+y+z==n&&x*5+y*3+z*1.0/3==n){ a++; cout<<a<<' '<<x<<' '<<y<<' '<<z<<endl; } } } } if(a==0) cout<<"None"<<endl; } return 0; }
Main.cc:25:5: error: expected unqualified-id before 'return'
return 0;
^
Main.cc:26:1: error: expected declaration before '}' token
}
^