Possible pseudocode for the operation could be:fn f32_greater(x: f64) -> f32 { let mut y = x as f32; //I get closest while f64::from(y) < x { y ...
確定! 回上一頁