python 求一个数的最大公约数
当前位置:以往代写 > Python教程 >python 求一个数的最大公约数
2019-06-14

python 求一个数的最大公约数

python 求一个数的最大公约数
python">__author__ = 'JanGin_Chan'
"'get the largest factor for the given non-prime number'"
number = raw_input('please input a number:\n')
num = int(number)
factor = num / 2
while factor > 1:
    if num % factor == 0:
        print '%s is the largest factor of the %s' % (factor,num)
        break
    factor -= 1
else:
    print 'the largest factor of %s is itself' % number

标签:python

    关键字:

在线提交作业