用 If Else 编写一个 Python示例来检查数字是否能被 5 和 11 整除。
这个 python 程序允许用户输入任意整数值。接下来,这个 Python示例使用 If Else 检查给定的数字是否可以被 5 和 11 整除。
# Python Program to Check Number is Divisible by 5 and 11
number = int(input(" Please Enter any Positive Integer : "))
if((number % 5 == 0) and (number % 11 == 0)):
print("Given Number {0} is Divisible by 5 and 11".format(number))
else:
print("Given Number {0} is Not Divisible by 5 and 11".format(number))
标签: 赚钱