Y


私信TA

用户名:uq_70775948495

访问量:45

签 名:

等  级
排  名 10761
经  验 1065
参赛次数 0
文章发表 8
年  龄 0
在职情况 学生
学  校
专  业

  自我简介:

TA的其他文章

解题思路:
利用字符串的首元素字母,即是数组的首个元素
注意事项:
一局比完直接出结果,不是那种全部比完才输出
参考代码:

#include<stdio.h>
#include<string.h>
#include<stdlib.h>
int main()
{
    int n;
    scanf("%d",&n);
    getchar();

    char a[100];
    char b[100];

    for(int i = 0;i<n;i++)
    {
        scanf("%s%s",a,b);
        if(a[0]==b[0])
            printf("Tie\n");
        
        else if((a[0]=='S'&&b[0]=='R')||(a[0]=='R'&&b[0]=='P')||a[0]=='P'&&b[0]=='S'){
            
            printf("Player2\n");
            
        }
        else 
            printf("Player1\n");
    }
    
    return 0;
}

解法二

通过字符串长度的不同,使用strlen函数来比较输赢

#include<stdio.h>

#include<string.h>


int main(void)

{


int n;

scanf("%d", &n);


for (n; n > 0; n--)

{

char a[1000], b[1000];

scanf("%s %s", &a, &b);


if (strlen(a) == 4 && strlen(b) == 8)

puts("Player1");

else if (strlen(a) == 8 && strlen(b) == 4)

puts("Player2");

else if (strlen(a) == 8 && strlen(b) == 5)

puts("Player1");

else if (strlen(a) == 5 && strlen(b) == 8)

puts("Player2");

else if (strlen(a) == 5 && strlen(b) == 4)

puts("Player1");

else if (strlen(a) == 4 && strlen(b) == 5)

puts("Player2");

else

puts("Tie");

}

return 0;

}


 

0.0分

0 人评分

  评论区

  • «
  • »