时需


私信TA

用户名:dotcpp0597666

访问量:10035

签 名:

等  级
排  名 1888
经  验 2579
参赛次数 0
文章发表 26
年  龄 19
在职情况 学生
学  校 东华理工大学
专  业

  自我简介:

解题思路:

注意事项:

参考代码:

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 人评分

  评论区

  • «
  • »