Submission #8828

# Submission time Handle Problem Language Result Execution time Memory
8828 2014-09-20T12:10:24 Z xiaoyu 짝수 정렬 (tutorial3) C++
Compilation error
0 ms 0 KB
#include "grader.h"

void sort_even(int N, int *A) {
    vector<int> v;
  
	int i;
	for(i = 0; i < N; i++) {
		if(A[i] % 2 == 0) v.push_back(A[i]);
	}
  
  sort(v.rbegin(), v.rend());
  for(i=0;i<v.size();i++) Report(v[i]);
}

Compilation message

tutorial3.cpp: In function 'void sort_even(int, int*)':
tutorial3.cpp:4:5: error: 'vector' was not declared in this scope
tutorial3.cpp:4:12: error: expected primary-expression before 'int'
tutorial3.cpp:4:12: error: expected ';' before 'int'
tutorial3.cpp:8:21: error: 'v' was not declared in this scope
tutorial3.cpp:11:8: error: 'v' was not declared in this scope
tutorial3.cpp:11:28: error: 'sort' was not declared in this scope