How to find the Minimum of Two Numbers in Dart - Step by Step Examples
How to find the Minimum of Two Numbers in Dart ?
Answer
To find the minimum of two numbers in Dart, you can use the min function.
✐ Examples
1 Minimum of Two Numbers
In this example,
- We declare two variables
a
andb
and assign values to them. - We use the
min
function from thedart:math
library to find the minimum ofa
andb
. - We print the minimum value.
Dart Program
// Minimum of Two Numbers
import 'dart:math';
void main() {
int a = 10;
int b = 15;
int min = min(a, b);
print('Minimum of \$a and \$b is: \$min');
}
Output
Minimum of 10 and 15 is: 10
Summary
In this tutorial, we learned How to find the Minimum of Two Numbers in Dart language with well detailed examples.