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

Python示例:寻找整数所有除数

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

Python 示例

编写一个 Python示例,使用 for 循环查找整数或数字的所有除数。在这个 Python 示例中,for 循环从 1 迭代到给定的数字,并检查每个数字是否可以被数字完全整除。如果为真,则将该数作为除数打印出来。

num = int(input("Please enter any integer to find divisors = "))

print("The Divisors of the Number = ")

for i in range(1, num + 1):
    if num % i == 0:
        print(i)

Python示例使用 while 循环查找整数的所有除数。

num = int(input("Please enter any integer to find divisors = "))

print("The Divisors of the Number = ")

i = 1

while(i <= num):
    if num % i == 0:
        print(i)
    i = i + 1
Please enter any integer to find divisors = 100
The Divisors of the Number = 
1
2
4
5
10
20
25
50
100

在这个 Python 示例中,我们创建了一个 find 除数函数,它将查找并返回给定数字的所有除数。

def findDivisors(num):
    for i in range(1, num + 1):
        if num % i == 0:
            print(i)
# End of Function

num = int(input("Please enter any integer to find divisors = "))

print("The Divisors of the Number = ")
findDivisors(num)
Please enter any integer to find divisors = 500
The Divisors of the Number = 
1
2
4
5
10
20
25
50
100
125
250
500
本文固定链接:https://6yhj.com/leku-p-4276.html  版权所有,转载请保留本地址!
[猜你喜欢]

标签: python报错