How to find the Maximum of Two Numbers in Rust


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,

  1. We declare two variables a and b and assign values to them.
  2. We use the std::cmp::max function to find the maximum of a and b.
  3. 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.




More Rust Comparison Operations Tutorials

  1. How to find the Maximum of Two Numbers in Rust ?
  2. How to find the Minimum of Two Numbers in Rust ?
  3. How to find the Maximum of Three Numbers in Rust ?
  4. How to find the Minimum of Three Numbers in Rust ?