潘CSP100班
作业第3题【提示】:统计相同行的最大数量,把一行当做一个字符串。
【知识点】:统计数组a[1...n]中有多少个值为x的元素
a[1...n]
x
int c = count(a+1, a+n+1, x); // c就是a数组中值为x的元素个数