Submission #667

#TimeUsernameProblemLanguageResultExecution timeMemory
667jyuno426짝수 정렬 (tutorial3)C++98
Compilation error
0 ms0 KiB
#include <algorithm> #include "grader.h" void sort_even(int N, int *A) { std::sort(A,A+N); for(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
In file included from tutorial3.cpp:2:
grader.h:1:22: warning: no newline at end of file
tutorial3.cpp: In function 'void sort_even(int, int*)':
tutorial3.cpp:6: error: 'i' was not declared in this scope