pta平台猜数字题目,要求多行输入,这个完全没头绪,完全不会,求带!


import random
seed = int(input())
random.seed(seed)
actual = random.randint(1, 99)
n = 0
while n < 6:
n += 1
x = int(input())
if x > actual:
print("大了")
elif x < actual:
print("小了")
else:
print("你赢了")
break
else:
print("你输了")