Contact: aviboots(AT)netvision.net.il
39,948 questions
51,890 answers
573 users
fn main() { let length = 50; let width = 21; let height = 15; let box_volume = length * width * height; println!("box volume = {} cm^3", box_volume); } /* run: box volume = 15750 cm^3 */