题解 | #被8整除的数字#

被8整除的数字

http://www.nowcoder.com/practice/50abf52eda1b438aa8ba0663865ca86f

active = True
while(active):
    print("Please enter a positive integer!\nEnter 'quit' to end the program.")
    try:
        resp = input()
        if resp == 'quit':
            active = False
        else:
            resp = int(resp)
            if resp<1 or resp >100:
                print('数字合法')
                continue
            if resp%8 == 0:
                print(f'{resp} is a multiple of 8.')
            else:
                print(f'{resp} is not a multiple of 8.')
    except TypeError:
        continue
    
全部评论

相关推荐

评论
1
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务