CCF——2013/12——第一题——出现次数最多的数(100分)

100分 

#include 
#include 
#include 

using namespace std;

const int MAXN = 1e4+10;
const int MINN = -10;
int a[MAXN];
 
int main(void)
{
	for(int i=0; i> n;
	for(int i=0; i> k;
		a[k]++;
	}
	
	int p = 0;
	int maxn = MINN;
	for(int i=0; i maxn){
			maxn = a[i];
			p = i;
		}
	}
	
	cout << p << endl;


	return 0;
}

 

你可能感兴趣的:(CCF-CSP认证考试满分题解,CCF)