解题思路:
注意事项:
参考代码:
n = int(input())
for i in range(n):
c = list(map(str,input().split()))
if c[0]==c[1]:
w=0
else:
if c[0]=="Rock":
if c[1]=="Scissors":
w=1
else:
w=2
elif c[0]=="Scissors":
if c[1]=="Paper":
w=1
else:
w=2
elif c[0]=="Paper":
if c[1]=="Rock":
w=1
else:
w=2
if w==0:
print('Tie')
if w==1:
print("Player1")
if w==2:
print('Player2')
0.0分
1 人评分
ASCII帮了大忙浏览:797 |
剪刀石头布 (C语言代码)不知道怎么直接在scanf中用枚举变量浏览:1435 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:583 |
C语言程序设计教程(第三版)课后习题5.4 (C语言代码)浏览:821 |
C语言程序设计教程(第三版)课后习题5.4 (C语言代码)浏览:585 |
核桃的数量 (C语言代码)浏览:893 |
1054题解浏览:516 |
模拟计算器 (C语言代码)浏览:2366 |
C语言程序设计教程(第三版)课后习题7.3 (C语言代码)浏览:420 |
A+B for Input-Output Practice (IV) (C语言代码)浏览:489 |