Submission #17100

#TimeUsernameProblemLanguageResultExecution timeMemory
17100pscheol짝수 정렬 (tutorial3)C++98
Compilation error
0 ms0 KiB
void sort_even(int N, int *A) { int i; for (i = 0; i < N; i++) { if (A[i] % 2 == 0) Report(A[i]); } }

Compilation message (stderr)

tutorial3.cpp: In function ‘void sort_even(int, int*)’:
tutorial3.cpp:4:33: error: ‘Report’ was not declared in this scope
   if (A[i] % 2 == 0) Report(A[i]);
                                 ^