답안 #501

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
501 2013-02-28T04:54:49 Z pl0892029 짝수 정렬 (tutorial3) C++
컴파일 오류
0 ms 0 KB
void sort_even(int N,int *A)
{
  int S[100];
  int i,j,n=0;
  for(i=0;i<N;i++) if(A[i]%2==0) S[n++]=A[i];
  for(i=n-1;i>0;i--)
    for(j=0;j<i;j++)
      if(S[j]>S[j+1])
      {
        S[j+1]+=S[j];
        S[j]=S[j+1]-S[j];
        S[j+1]-=S[j];
      }
  for(i=0;i<n;i++) Report(S[i]);
}

Compilation message

grader.cpp:37:2: warning: no newline at end of file
tutorial3.cpp: In function 'void sort_even(int, int*)':
tutorial3.cpp:14: error: 'Report' was not declared in this scope