#integer #find #vector

factor

找出任何整数的因子

4 个版本 (重大更新)

使用旧的 Rust 2015

0.4.0 2018年9月8日
0.3.0 2018年9月5日
0.2.0 2018年9月5日
0.1.0 2018年9月3日

#256#find

Download history • Rust 包仓库 2/week @ 2024-04-22 • Rust 包仓库 4/week @ 2024-05-13 • Rust 包仓库 10/week @ 2024-05-20 • Rust 包仓库 3/week @ 2024-06-03 • Rust 包仓库 10/week @ 2024-06-10 • Rust 包仓库 7/week @ 2024-06-17 • Rust 包仓库 22/week @ 2024-06-24 • Rust 包仓库 38/week @ 2024-07-01 • Rust 包仓库 54/week @ 2024-07-15 • Rust 包仓库 9/week @ 2024-07-22 • Rust 包仓库 28/week @ 2024-07-29 • Rust 包仓库

每月 91 次下载
用于 cega

MIT/Apache 许可证

6KB

Factor

找出任何整数的因子。

使用方法

Cargo.toml

[dependencies]
factor = "0.4"

将以下内容添加到您的 crate 根目录 -

extern crate factor;

use factor::factor::factor;
use factor::factor_include::factor_include;

factor() - 将返回给定整数的因子(不包括1和给定数字)。

factor_include() - 将返回给定整数的因子(包括1和给定数字)。

***注意:因子以向量形式返回。

#示例:

-println!("{:?}", factor(144));
    -Prints [2, 3, 4, 6, 8, 9, 12, 16, 18, 24, 36, 48, 72]
-println!("{:?}", factor_include(144));
    -Prints [1, 2, 3, 4, 6, 8, 9, 12, 16, 18, 24, 36, 48, 72, 144]

lib.rs:

 factor() - Will return factors of a given integer EXCLUDING 1 and the given number.

 factor_include() - Will return factors of a given integer INCLUDING 1 and the given number.

无运行时依赖