How to find the Maximum of Two Numbers in Dart


How to find the Maximum of Two Numbers in Dart ?

Answer

To find the maximum of two numbers in Dart, you can use the built-in 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 max function to find the maximum of a and b.
  3. We print the maximum value.

Dart Program

// Maximum of Two Numbers
void main() {
  int a = 10;
  int b = 15;
  int max = a > b ? a : b;

  print('Maximum of $a and $b is: $max');
}

Output

Maximum of 10 and 15 is: 15

Summary

In this tutorial, we learned How to find the Maximum of Two Numbers in Dart language with well detailed examples.




More Dart Comparison Operations Tutorials

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