Submission #145847

#TimeUsernameProblemLanguageResultExecution timeMemory
145847leewj1025짝수 정렬 (tutorial3)C++14
Compilation error
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]); } }

Compilation message (stderr)

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