v = int(input(‘请输入一个整数:‘)) if v % 3 == 0 and v % 5 ==0: print(v,‘即是3的倍数又是5的倍数‘) else: print(‘不是3或5的倍数‘)
原文地址:https://www.cnblogs.com/chengxubo/p/9902302.html
时间: 2024-11-05 13:45:58
v = int(input(‘请输入一个整数:‘)) if v % 3 == 0 and v % 5 ==0: print(v,‘即是3的倍数又是5的倍数‘) else: print(‘不是3或5的倍数‘)
原文地址:https://www.cnblogs.com/chengxubo/p/9902302.html