欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

八球胜负 HDU-2537

程序员文章站 2022-12-22 22:30:25
#include #include #include int main(){ int a,b,n,i; char ch[1000]; while(scanf("%d",&n)!=EOF&&n!=0){ a=0;b=0; getchar(); ......

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main()
{
int a,b,n,i;
char ch[1000];
while(scanf("%d",&n)!=eof&&n!=0){
a=0;b=0;
getchar();
gets(ch);
for(i=0;i<=n-1;i++){
if(ch[i]=='r')
a++;
if(ch[i]=='y')
b++;
}
if(a==7&&b==7){
if(ch[n-1]=='b'){
printf("red\n");
}
if(ch[n-1]=='l'){
printf("yellow\n");
}
}
if(a==7&&b!=7){
printf("red\n");
}

if(a!=7&&b==7){
printf("yellow\n");
}
if(a!=7&&b!=7){
if(ch[n-1]=='l'){
printf("red\n");
}
if(ch[n-1]=='b'){
printf("yellow\n");
}
}
}
return 0;
}