Submission #14801

#TimeUsernameProblemLanguageResultExecution timeMemory
14801aloshipda짝수 정렬 (tutorial3)C++98
Compilation error
0 ms0 KiB
#include <algorithm> using namespace std; void sort_even(int N, int *A) { int i; sort(A,A+N); 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:7:32: error: ‘Report’ was not declared in this scope
   if(A[i] % 2 == 0) Report(A[i]);
                                ^