Submission #837

#TimeUsernameProblemLanguageResultExecution timeMemory
837ladown21짝수 정렬 (tutorial3)C++98
Compilation error
0 ms0 KiB
#include <algorithm> void sort_even(int N, int *A) { std::sort(A,A+N); int i; for (i=0; i<N; i++) if (!(A[i] & 1)) Report(A[i]); }

Compilation message (stderr)

grader.cpp:37:2: warning: no newline at end of file
tutorial3.cpp: In function 'void sort_even(int, int*)':
tutorial3.cpp:8: error: 'Report' was not declared in this scope