Problem basketball_cpic
User abhro
Submission Time 2025-06-20 15:38:38
Score 0
Max Time N/A
Max Memory N/A

Compile Error

basketball_cpic.cpp: In function ‘int main()’:
basketball_cpic.cpp:13:5: error: ‘numbers’ was not declared in this scope
13 | numbers[S]
| ^~~~~~~
basketball_cpic.cpp:15:21: error: ‘i’ was not declared in this scope
15 | for (int i = 0; i < N; ++i) {
| ^
basketball_cpic.cpp:25:16: error: invalid types ‘int[int]’ for array subscript
25 | if (S[i] % 2 == 0){count++;}
| ^
basketball_cpic.cpp:26:18: error: expected ‘;’ before ‘return’
26 | cout << count
| ^
| ;
27 | return 0;
| ~~~~~~
basketball_cpic.cpp:28:1: error: expected ‘}’ at end of input
28 | }
| ^
basketball_cpic.cpp:5:12: note: to match this ‘{’
5 | int main() {
| ^