Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- def collatz(numer):
- if numer % 2 == 0:
- print(numer // 2)
- return numer // 2
- elif numer % 2 == 1:
- result = 3 * numer + 1
- print(result)
- return result
- n = input("podaj liczbe: ")
- while n != 1:
- n = collatz(int(n))
- if n == 0:
- print("podales liczbe 0, podaj inna liczbe")
- break
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement