韩信点兵问题(如何处理不限输入次数)

while True:
    x=input()
    if x!=' ':    
        lst=list(x.split(' '))
        a,b,c=int(lst[0]),int(lst[1]),int(lst[2])
        pb=[]
        for tt in range(10,101):
            if (tt-a)%3==0:
                if (tt-b)%5==0:
                    if (tt-c)%7==0:
                        pb.append(tt)
        if pb != []:
            print(min(pb))
        else:
            print('No answer')
    else:
        break

 

转载于:https://www.cnblogs.com/Joanna-2019/p/10688508.html

你可能感兴趣的:(韩信点兵问题(如何处理不限输入次数))