답안 #4963

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
4963 2014-01-23T16:04:48 Z lingxiang 짝수 정렬 (tutorial3) C++
컴파일 오류
0 ms 0 KB
#include "grader.h"
#include<algorithm>

void sort_even(int N,int a[]){
  sort(a,a+N);
  for(int i=0;i<N;i++) if(a[i]%2==0) Report(a[i]);
}

Compilation message

tutorial3.cpp: In function 'void sort_even(int, int*)':
tutorial3.cpp:5:13: error: 'sort' was not declared in this scope
tutorial3.cpp:5:13: note: suggested alternative:
/usr/include/c++/4.6/bits/stl_algo.h:5430:5: note:   'std::sort'