plaque rouille

let a: f32 = 3.2;
let b: usize = 2;

let c = (a / b as f32).ceil(); // c = 2.0
PeruTilli