mirror of https://github.com/01-edu/public.git
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.
38 lines
705 B
38 lines
705 B
4 years ago
|
## division_and_remainder
|
||
|
|
||
|
### Instructions
|
||
|
|
||
|
Create a function divide that receives two i32 and returns a tuple in which the first element is the result of the integer division between the two numbers and the second is the remainder of the division.
|
||
|
|
||
|
### Expected Function
|
||
|
|
||
|
```rust
|
||
|
fn divide(x: i32, y: i32) -> (i32, i32) {
|
||
|
|
||
|
}
|
||
|
```
|
||
|
|
||
|
### Usage
|
||
|
|
||
|
Here is a program to test you're function
|
||
|
|
||
|
```rust
|
||
|
fn main() {
|
||
|
let x = 9;
|
||
|
let y = 4;
|
||
|
let (division, remainder) = divide(x, y);
|
||
|
println!(
|
||
|
"\t{}/{}: division = {}, remainder = {}",
|
||
|
x, y, division, remainder
|
||
|
);
|
||
|
}
|
||
|
```
|
||
|
|
||
|
And its output
|
||
|
|
||
|
```console
|
||
|
student@ubuntu:~/[[ROOT]]/test$ cargo run
|
||
|
9/4: division = 2, remainder = 1
|
||
|
student@ubuntu:~/[[ROOT]]/test$
|
||
|
```
|