Submission #540

#TimeUsernameProblemLanguageResultExecution timeMemory
540a01077483940짝수 정렬 (tutorial3)C++98
Compilation error
0 ms0 KiB
#include<algorithm> using namespace std; void sort_even (int N, int *A) { sort (A, A+N); for (int i=0; i<N; i++) if (A[i]%2 == 0) 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