1 个不稳定版本
0.1.0 | 2020年5月11日 |
---|
#1453 in 数学
7KB
数学表格
一个Rust库,可以根据用户提供的整数生成数学表格。
用法
要在您的代码中使用此库,您只需要在您的 cargo.toml 文件的依赖关系部分添加以下行:
[dependencies]
mathematics_table = "0.1.0"
您的 cargo.toml 文件将看起来像这样:
[package]
name = "mathematics_table"
version = "0.1.0"
authors = ["Haseeb ul Hassan <[email protected]>"]
edition = "2018"
[dependencies]
mathematics_table = "0.1.0"
现在,只需在 src/main.rs
中进入,使用此库crate。写下以下行,它将生成整数 '9' 的数学表格,我们以 '9' 为例,您可以在 '9' 的位置添加任何整数
use mathematics_table;
fn main () {
mathematics_table::table::integer(9);
}
另一种使用方法是:
use mathematics_table::table;
fn main () {
table::integer(9);
}
最后,只需使用 cargo run 获取整数 '9' 的数学表格。
语法
在这里,mathematics_table
是crate的名称,table
是模块的名称,integer
是函数的名称。
注意
您只能将整数作为参数传递给 integer
函数。
输出
输出将如下所示
The table of 9 is as follow:
9 X 1 = 9
9 X 2 = 18
9 X 3 = 27
9 X 4 = 36
9 X 5 = 45
9 X 6 = 54
9 X 7 = 63
9 X 8 = 72
9 X 9 = 81
9 X 10 = 90