Что здесь не правильно ???
Что то туплю конкретно

((((((((((((\
#include <iostream>
#include <ios>
#include <vector>
#include <algorithm>
#include <functional>
using namespace std;
// [12/5/2006 Psyho] Тех задание
// Массив A
// Нийти наиболее повторяющиеся числа и вывести на экран
int main(void)
{
vector <int>::iterator Iter;
vector <int> mass_a;
vector <int, vector<int> > pos;
cout << " Заполнение массива ";
for (int x = 0, int i = 0; ;i++)
{
cout << "'\n Введите " << i << " элемент массива ";
cin >> x;
mass_a.push_back(x);
if (x == -1) break;
}
int x;
for (int j = 0; j < mass_a.size(); j++)
{
cout << count(mass_a.begin(), mass_a.end(), mass_a[j]);
}
return 0;
}
На count ошибку и гонит. Смотрю MSDN вроде все по честному.
В общем заклинило.

(((((((((((((