如何设置地板号或天花板号?我尝试使用round
条板箱,但它无法正常工作或使用错误。
use round::round_down;
fn main() {
println!("{}", round_down(5.5f64, 0));
}
此打印5.5
,但应打印5
。
我的Cargo.toml
文件包含此:
[dependencies]
round = "0.1.0"
如果您想将天花板或地板弄圆,可以使用math::round
use math::round;
// Rounded ceiling will be 3.142
let rounded = round::ceil(3.14159, 3);
// Round floor will be will be 3.141
rounded = round::floor(3.14159, 3);