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
每月 91 次下载
用于 cega
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.