답안 #12842

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
12842 2015-01-10T00:29:46 Z yongwhan 짝수 정렬 (tutorial3) C++
컴파일 오류
0 ms 0 KB
#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;
}

Compilation message

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