Submission #8829

# Submission time Handle Problem Language Result Execution time Memory
8829 2014-09-20T12:10:43 Z xiaoyu 짝수 정렬 (tutorial3) C++
Compilation error
0 ms 0 KB
#include "grader.h"
#include <vector>
using namespace std;

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:13:28: error: 'sort' was not declared in this scope
tutorial3.cpp:14:20: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]