📜  rust number square - Rust 代码示例

📅  最后修改于: 2022-03-11 14:49:25.459000             🧑  作者: Mango

代码示例1
f32::powf(x, y); // x^y
f32::powf(2.0, 3.0) = 8.0;

u32::pow(x, y);
u32::pow(2, 3);

// For any datatype, f32, f64, u16, u32, u64 etc...