How to find the Maximum of Two Numbers in Rust - Step by Step Examples
How to find the Maximum of Two Numbers in Rust ?
Answer
To find the maximum of two numbers in Rust, you can use the std::cmp::max function.
✐ Examples
1 Maximum of Two Numbers
In this example,
- We declare two variables
aandband assign values to them. - We use the
std::cmp::maxfunction to find the maximum ofaandb. - We print the maximum value.
Rust Program
// Maximum of Two Numbers
fn main() {
let a = 10;
let b = 15;
let max = std::cmp::max(a, b);
println!("Maximum of {} and {} is: {}", a, b, max);
}Output
Maximum of 10 and 15 is: 15
Summary
In this tutorial, we learned How to find the Maximum of Two Numbers in Rust language with well detailed examples.