You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
Augusto 7847670d1c Add exercise `speed_transformation` subject and test 4 years ago
..
README.md Add exercise `speed_transformation` subject and test 4 years ago

README.md

speed_transformation

Instructions

Create a function that receives the speed in km/h (kilometers per hour) and returns the equivalent in m/s (meters per second)

Expected Function

pub fn km_per_hour_to_meters_per_second(km_h: f64) -> f64 {
	(10.0 / 36.0) * km_h
}

Usage

fn main() {
	let km_h = 100.0;
	let m_s = km_per_hour_to_meters_per_second(km_h);
	println!("{} km/h is equivalent to {} m/s", km_h, m_s);
}

And its output:

student@ubuntu:~/[[ROOT]]/test$ cargo run
100 km/h is equivalent to 27.77777777777778 m/s
student@ubuntu:~/[[ROOT]]/test$