当前位置:天才代写 > tutorial > Python教程 > python 求一个数的最大公约数

python 求一个数的最大公约数

2018-05-17 08:00 星期四 所属: Python教程 浏览:624

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

 

    关键字:

天才代写-代写联系方式