小鑫の日常系列故事(二)——石头剪子布
Time Limit: 1000MS Memory Limit: 65536KB
Problem Description
小鑫在上幼儿园的时候,喜欢跟小伙伴健健玩石头剪子布的游戏 ,你能帮他们判断谁胜谁负么?


Input
输入有两行,每一行都有可能为“Rock”(石头),“Scissors”(剪子),”Cloth”(布)。第一行为小鑫的选择,第二行为健健的选择。
Output
输出有一行,如果小鑫赢了输出“Win”,输了输出“Lose”,平局输出“Equal”。(输出不包括引号)
Example Input
Rock Scissors
Example Output
Win
Hint
Author
lin
参考代码
#include<stdio.h>
#include<string.h>
int main()
{
char a[100];
char b[100];
gets(a);
gets(b);
if (strcmp(a, "Rock") == 0 && strcmp(b, "Rock") == 0)
printf("Equal\n");
if (strcmp(a, "Rock") == 0 && strcmp(b, "Scissors") == 0)
printf("Win\n");
if (strcmp(a, "Rock") == 0 && strcmp(b, "Cloth") == 0)
printf("Lose\n");
if (strcmp(a, "Scissors") == 0 && strcmp(b, "Scissors") == 0)
printf("Equal\n");
if (strcmp(a, "Scissors") == 0 && strcmp(b, "Rock") == 0)
printf("Lose\n");
if (strcmp(a, "Scissors") == 0 && strcmp(b, "Cloth") == 0)
printf("Win\n");
if (strcmp(a, "Cloth") == 0 && strcmp(b, "Cloth") == 0)
printf("Equal\n");
if (strcmp(a, "Cloth") == 0 && strcmp(b, "Rock") == 0)
printf("Win\n");
if (strcmp(a, "Cloth") == 0 && strcmp(b, "Scissors") == 0)
printf("Lose\n");
return 0;
}
这是一个简单的编程问题,要求根据两个玩家在石头剪子布游戏中的选择来判断胜负。输入包含两行,每行分别代表两个玩家的选择,输出则根据游戏规则决定是胜利、失败还是平局。
833

被折叠的 条评论
为什么被折叠?



