Răspuns:
#include <iostream>
#include <fstream>
using namespace std;
int v[10];
int main()
{
ifstream f("maxcif.in");
ofstream g("maxcif.out");
int cif, max=-1, i;
while (f >> cif)
{
++v[cif];
if (v[cif]>max) max=v[cif];
}
for (i=0; i<10; ++i)
if (v[i]==max) g << i << " ";
return 0;
}
Explicație: