当前分类:300例题>>正文

Python示例:检查数字是否能被 5 和 11 整除

来源:互联网   更新时间:2023年6月18日  

Python 示例

用 If Else 编写一个 Python示例来检查数字是否能被 5 和 11 整除。

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))

本文固定链接:https://6yhj.com/leku-p-4278.html  版权所有,转载请保留本地址!
[猜你喜欢]

标签: 赚钱