Contact: aviboots(AT)netvision.net.il
39,950 questions
51,892 answers
573 users
fn main() { let radius:f32 = 3.0; let volume:f32 = (4.0 / 3.0) * std::f32::consts::PI * (radius * radius * radius); println!("Volume of sphere = {}", volume); } /* run: Volume of sphere = 113.097336 */