제출 #12842

#제출 시각아이디문제언어결과실행 시간메모리
12842yongwhan짝수 정렬 (tutorial3)C++98
컴파일 에러
0 ms0 KiB
#include<algorithm>
#include<vector>
using namespace std;

int sort_even(int N, int A[]) {
  vector<int> v(N);
  for (int i=0; i<N; i++) v[i]=A[i];
  sort(v.begin(), v.end());
  for (int i=0; i<N; i++)
    if(v[i]%2==0) Report(v[i]);
  return 0;
}

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

tutorial3.cpp: In function 'int sort_even(int, int*)':
tutorial3.cpp:10:30: error: 'Report' was not declared in this scope