while True:
cups=int(input('令狐冲喝了几杯酒:'))
if cups % 3==2 and cups %5==3 and cups % 7==2:
print('你说对了,他确实喝了{}酒'.format(cups))
break
else:
print('再猜猜看')
continue
在这里插入图片描述
2023-10-30 20:11:22
while True:
cups=int(input('令狐冲喝了几杯酒:'))
if cups % 3==2 and cups %5==3 and cups % 7==2:
print('你说对了,他确实喝了{}酒'.format(cups))
break
else:
print('再猜猜看')
continue
在这里插入图片描述