Submission #3179

#TimeUsernameProblemLanguageResultExecution timeMemory
3179cki86201짝수 정렬 (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==0)Report(A[i]); } }

Compilation message (stderr)

tutorial3.cpp: In function 'void sort_even(int, int*)':
tutorial3.cpp:6:16: warning: suggest parentheses around comparison in operand of '&' [-Wparentheses]
tutorial3.cpp:6:29: error: 'Report' was not declared in this scope