제출 #145846

#제출 시각아이디문제언어결과실행 시간메모리
145846leewj1025짝수 정렬 (tutorial3)C++14
컴파일 에러
0 ms0 KiB
#include "grader.h"

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

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

tutorial3.cpp: In function 'void sort_even(int, int*)':
tutorial3.cpp:7:10: error: 'a' was not declared in this scope
  if(A[i]<a[j]){
          ^