解题思路:
注意事项:
参考代码:
#include<stdio.h>
#include<string.h>
//建立结构体
struct play
{
char p1[100];//玩家1
char p2[100];//玩家2
}times[100];//玩的次数
int main()
{
int n;
char p1[100],p2[100];
scanf("%d",&n);
int i;
//输入
for(i=0;i<n;i++)
{
scanf("%s %s",×[i].p1,×[i].p2);
}
//遍历比较
for(i=0;i<n;i++)
{
if(!strcmp(times[i].p1,times[i].p2))
{
printf("Tie\n");
}
else if(!strcmp(times[i].p1,"Rock")&&!strcmp(times[i].p2,"Scissors"))
{
printf("Player1\n");
}
else if(!strcmp(times[i].p1,"Scissors")&&!strcmp(times[i].p2,"Paper"))
{
printf("Player1\n");
}
else if(!strcmp(times[i].p1,"Paper")&&!strcmp(times[i].p2,"Rock"))
{
printf("Player1\n");
}
else printf("Player2\n");
}
return 0;
}
0.0分
5 人评分
C语言程序设计教程(第三版)课后习题4.9 (C语言代码)浏览:634 |
众数问题 (C语言代码)浏览:911 |
WU-printf基础练习2 (C++代码)浏览:2061 |
Hello, world! (C++代码)浏览:1778 |
C语言程序设计教程(第三版)课后习题4.9 (C语言代码)浏览:593 |
【亲和数】 (C语言代码)浏览:628 |
C语言程序设计教程(第三版)课后习题9.3 (C语言代码)浏览:650 |
Hello, world! (C语言代码)浏览:916 |
C语言程序设计教程(第三版)课后习题8.2 (C语言代码)浏览:1108 |
简单的a+b (C语言代码)浏览:587 |