解题思路:
注意事项:注意清空缓冲区就行了
参考代码:
#include <stdio.h>
int main()
{
int a = 0, t = 0;
char x;
while (x = getchar()) //字符输入
{
while (getchar() != '\n'); //清除缓冲区
if (x == '1')
{
a++;
}
else
{
t++;
}
if (a >= 21 && a - t > 1)
{
printf("%d", 1);
break;
}
if (t >= 21 && t - a > 1)
{
printf("%d", 0);
break;
}
}
return 0;
}
0.0分
0 人评分