题解 | #竞选社长#
竞选社长
https://www.nowcoder.com/practice/45a30e3ef51040ed8a7674984d6d1553
#include <stdio.h>
int main() {
char str[100]={0};
int a=0,b=0;
for(int i=0;str[i]!='0';i++)
{
scanf("%c",&str[i]);
if(str[i]=='A')
a++;
else if(str[i]=='B')
b++;
}
if(a>b)
printf("A");
else if(a<b)
printf("B");
else
printf("E");
return 0;
}


