How to calculate the area of a triangle given base and height in Rust

1 Answer

0 votes
fn main() {
    let base:f32 = 5.0;
    let height:f32 = 8.0;
 
    let area:f32 = (base * height) / 2.0;
    
    println!("area = {} ", area);
}




/*
run:
 
area = 20 
 
*/

 



answered May 7, 2023 by avibootz
...