CodeFoeces-43A

题目

原题链接:A. Football

题意

有n个球队获胜,问那个获胜次数最多。

代码

#include
using namespace std;
int main() {
    map s;
    int n,maxx=0;
    string t,ans;
    scanf("%d",&n);
    for(int i=0;i>t;
        s[t]++;
        if(s[t]>maxx){
            maxx=s[t];
            ans=t;
        }
    } 
    cout<

你可能感兴趣的:(CodeFoeces-43A)