Submission #145846

# Submission time Handle Problem Language Result Execution time Memory
145846 2019-08-21T07:09:55 Z leewj1025 짝수 정렬 (tutorial3) C++14
Compilation error
0 ms 0 KB
#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]);
	}
}

Compilation message

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]){
          ^