Solution Review: Calculate Distance Between Two Points
This lesson discusses the detailed solution review to the problem in the previous lesson.
We'll cover the following...
We'll cover the following...
Solution:
Rust 1.40.0
#[derive(Debug)] // prints the value of struct using the debug traitstruct Point {x: i32,y: i32}fn test(point1: Point, point2: Point)-> f32 {let distance = i32::pow(point1.x - point2.x,2) + i32::pow(point1.y - point2.y,2);let d = distance as f32;d.sqrt()}fn main(){let point1 = Point { x: 3, y: 4 };let point2 = Point { x: 2, y: 3 };println!("point1:{:?}", point1);println!("point2:{:?}", point2);print!("Distance between two points:");print!("{}", test(point1, point2));}
Explanation
-
structPoint- On line 2, a
structPointis defined which has two itemsxof typei32andyof typei32.
- On line 2, a
-
testfunction-
On line 6, a function
testis defined which takes parameterpoint1andpoint2of typePointand returns anf32type, i.e., the distance between the two points. -
On line 7, ...
-