考拉兹猜想,

Posted liulangdejiafeimao

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了考拉兹猜想,相关的知识,希望对你有一定的参考价值。

#考拉兹猜想(英语:Collatz conjecture),又称为奇偶归一猜想、3n+1猜想、
#冰雹猜想、角谷猜想、哈塞猜想、乌拉姆猜想或叙拉古猜想,是指对于每一个正整数,
#如果它是奇数,则对它乘3再加1,如果它是偶数,则对它除以2,如此循环,最终都能够得到1。
def collatz(number):
    int(number)
    if number % 2 ==0:
        return number/2
    else :
        return 3 * number +1
try:
    num = int(input(>))
    while num != 1:
       num=collatz(number=num)
       print(num)
except:
    print(error) 
#当while该为if,则不能按照要求执行
#while可以让语块一遍又一遍的执行。只要为true,下面的字句就会执行。
#int()输入为整数。

 

以上是关于考拉兹猜想,的主要内容,如果未能解决你的问题,请参考以下文章

Python实现Collatz序列(考拉兹猜想)

考拉兹猜想的变体

奇偶归一猜想恰好实施5次运算有几个

P1001 害死人不偿命的(3n+1)猜想 (Basic Level)

卡拉兹猜想

卡拉兹猜想