#input #operations #most #function #addition #division

最常用_函数

包含最常用函数,如输入、数学运算等的库

1个不稳定版本

0.1.0 2020年6月14日

#1542 in 数学

MIT/Apache

6KB

首次欢迎

这是一个在crates.io上发布的Rust库的示例

要使用此库,您需要在cargo.toml的依赖部分添加以下行:

firstwelcome= "0.1.0"

您的cargo.toml文件应如下所示:

[package]
name = "most_used_functions"
version = "0.1.0"
authors = ["badar343 <[email protected]>"]
edition = "2018"

[dependencies]
most_used_functions = "0.1.0"

src/main.rs 中您可以这样使用:

//for input
use most_used_functions;
use most_used_functions::get_input;
fn main() {
	let input = get_input::take_input();
}

以下也将生效:

//for calculatios. x , y should integer
use most_used_functions::calculate;
fn main() {
	calculate::add(x , y);        //for addition of two numbers
	calculate::subtract(x , y);   //for sutraction of two numbers
	calculate::divide(x , y);     //for division of two numbers
	calculate::multiply(x , y);   //for multiplication of two numbers
	calculate::modulus(x , y);    //for reminder 
    }

现在使用 cargo run 命令获取结果

无运行时依赖