mirror of https://github.com/01-edu/public.git
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.
miguel
50195f75ca
|
2 years ago | |
---|---|---|
.. | ||
README.md | 2 years ago |
README.md
Max Num
Instructions
Your task is to implement a function maxNum
, which should accept three integer parameters and return the maximum of the three.
Usage
void main() {
print(maxNum(1, 2, 3));
print(maxNum(0, 0, 0));
print(maxNum(-1, -5, 0));
}
And its output :
$ dart test.dart
3
0
0
$