tj
2024-10-19 09:26:17
发布于:上海
1阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int main()
{
int a;
cin>>a;
for(int i = 0;i<a;i++)
{
int cnt = 0;
for(int j = 0;j<5;j++)
{
char b;
cin>>b;
if(b=='A')
cnt+=1;
}
if(cnt>2)
cout<<'A';
else
cout<<'B';
cout<<endl;
}
}
这里空空如也
有帮助,赞一个