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.

33 lines
573 B

## speed_transformation
### Instructions
Create a **function** that converts speed from km/h (kilometers per hour) and returns m/s (meters per second).
### Expected Function
```rust
pub fn km_per_hour_to_meters_per_second(km_h: f64) -> f64 {
}
```
### Usage
```rust
use speed_transformation::km_per_hour_to_meters_per_second;
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:
```console
$ cargo run
100 km/h is equivalent to 27.77777777777778 m/s
$
```