题解 | #竞选社长#
竞选社长
https://www.nowcoder.com/practice/45a30e3ef51040ed8a7674984d6d1553
#include <stdio.h>
int main() {
char s;
int a=0,b=0;
while((s=getchar())!='0')//关键是要看输入符号结束的设定
{
if(s=='A')
a++;
else
b++;
}
if(a>b)
printf("A");
else if(a<b)
printf("B");
else
printf("E");
return 0;
}

