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 95d1e5d365 Add the exercise division_and_remainder's subject and tests 4 years ago
..
README.md Add the exercise division_and_remainder's subject and tests 4 years ago

README.md

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

fn divide(x: i32, y: i32) -> (i32, i32) {

}

Usage

Here is a program to test you're function

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

student@ubuntu:~/[[ROOT]]/test$ cargo run
9/4: division = 2, remainder = 1
student@ubuntu:~/[[ROOT]]/test$