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.

26 lines
338 B

## 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
```dart
void main() {
print(maxNum(1, 2, 3));
print(maxNum(0, 0, 0));
print(maxNum(-1, -5, 0));
}
```
And its output :
```console
$ dart test.dart
3
0
0
$
```