답안 #3179

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
3179 2013-08-27T10:53:28 Z cki86201 짝수 정렬 (tutorial3) C++
컴파일 오류
0 ms 0 KB
#include<algorithm>
void sort_even(int N, int *A){
  std::sort(A,A+N);
  int i;
  for(i=0;i<N;i++){
    if(A[i]&1==0)Report(A[i]);
  }
}

Compilation message

tutorial3.cpp: In function 'void sort_even(int, int*)':
tutorial3.cpp:6:16: warning: suggest parentheses around comparison in operand of '&' [-Wparentheses]
tutorial3.cpp:6:29: error: 'Report' was not declared in this scope