题解 | #牛牛的抽奖游戏#
牛牛的抽奖游戏
https://www.nowcoder.com/practice/9c9300f7ecbb41f49c3e8727b4948038
while True: try: n = int(input()) except EOFError: print("Give up!") break else: if n == 3: print("Congratulations!") break
牛牛的抽奖游戏
https://www.nowcoder.com/practice/9c9300f7ecbb41f49c3e8727b4948038
while True: try: n = int(input()) except EOFError: print("Give up!") break else: if n == 3: print("Congratulations!") break
相关推荐