Problem | duckbuttons |
---|---|
User | Joashhh |
Submission Time | 2025-02-22 19:52:53 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
duckbuttons.cpp: In function ‘int main()’:
duckbuttons.cpp:6:22: error: expected ‘;’ before ‘ducks’
6 | vector<long long>(n) ducks, v;
| ^~~~~~
| ;
duckbuttons.cpp:10:3: error: ‘ducks’ was not declared in this scope
10 | ducks[i] = number;
| ^~~~~
duckbuttons.cpp:11:3: error: ‘v’ was not declared in this scope
11 | v[i] = number;
| ^
duckbuttons.cpp:13:7: error: ‘v’ was not declared in this scope
13 | sort(v.begin(), v.end());
| ^
duckbuttons.cpp:18:6: error: ‘ducks’ was not declared in this scope
18 | if(ducks[i] == max){
| ^~~~~
duckbuttons.cpp:23:36: error: ‘ducks’ was not declared in this scope
23 | v.erase(find(v.begin(), v.end(), ducks[i]));
| ^~~~~