Advertisement
pankovamg

Факторизация числа (python)

Jul 1st, 2022
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. #факторизация числа
  2. x = int(input())
  3. i = 2
  4. a = []
  5. while i * i <= x:
  6. while x % i == 0 and i * i <= x:
  7. a.append(i)
  8. x //= i
  9. #continue
  10. i += 1
  11. a.append(x)
  12. print(*a)
  13. #или
  14. #факторизация
  15. x = int(input())
  16. i = 2
  17. a = []
  18. while i * i <= x:
  19. while x % i == 0 and i * i <= x:
  20. a.append(i)
  21. x //= i
  22. #continue
  23. i += 1
  24.  
  25. a.append(x)
  26. print(*a)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement