解题思路:
注意事项:
参考代码:
ls=["Rock", "Scissors", "Paper"] #选择 def judge(S1,S2): if S1==S2: #平局 print("Tie") elif (S1==ls[0] and S2==ls[1]) or (S1==ls[1] and S2==ls[2]) or (S1==ls[2] and S2==ls[0]): #Player1赢的情况 print("Player1") else: #除了以上两种情况,剩下只能是Player2赢 print("Player2") N=int(input()) #局数 for i in range(N): S1,S2=input().split() judge(S1,S2) #判断胜负
0.0分
5 人评分