제출 #1003

#제출 시각아이디문제언어결과실행 시간메모리
1003testtest짝수 정렬 (tutorial3)C++98
컴파일 에러
0 ms0 KiB
#include "grader.h" #include <algorithm> void sort_even(int N, int *A) { /*int last = 0; for(int i = 0;i < N;i++) if(A[i] & 1 == 0) A[last++] = A[i];*/ std::sort(A , A + N); for(int i = 0;i < N;i++) if(A[i] % 2 == 0) Report(A[i]);

컴파일 시 표준 에러 (stderr) 메시지

grader.cpp:37:2: warning: no newline at end of file
In file included from tutorial3.cpp:1:
grader.h:1:22: warning: no newline at end of file
tutorial3.cpp: In function 'void sort_even(int, int*)':
tutorial3.cpp:10: error: expected `}' at end of input