整数到它的质因数

发布于 2024-10-30 14:51:38 字数 58 浏览 1 评论 0原文

嘿,我需要设计一个程序,输入一个整数并输出该整数示例的质因数 660输入n输出为2 2 3 5 11

hey i need to desing a program that inputs an integer and outputs the prime factors of the integer example
660 input n output is 2 2 3 5 11

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

深海少女心 2024-11-06 14:51:38

把问题分解。首先,您需要一个包含小于输入平方根的每个素数的列表。你可以通过试除慢慢地获得这个列表,或者通过使用Eratosthenes' Sieve - 实现来快速获得这个列表那你就成功了一半。其他一切都应该就位。

Break the problem down. Firstly, you need a list of every prime number smaller than the square root of the input. You can obtain this list slowly through trial division, or quickly by using something like Eratosthenes' Sieve - implement that, and you're halfway there. Everything else should fall into place.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文