■ struct 키워드로 구조체를 사용해 체질량 지수(Body Mass Index)를 구하는 방법을 보여준다.
▶ 예제 코드 (RS)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
struct Body { weight : f64, height : f64 } fn calculate_bmi(body : &Body) -> f64 { let height : f64 = body.height / 100.0; return body.weight / height.powf(2.0); } fn main() { let person1: Body = Body { weight : 80.0, height : 165.0 }; let person2: Body = Body { weight : 65.0, height : 170.0 }; println!("사람 1 = {:.1}", calculate_bmi(&person1)); println!("사람 2 = {:.1}", calculate_bmi(&person2)); } |