docs(numMax): fix the readme

This commit is contained in:
miguel 2023-05-12 16:40:08 +01:00 committed by MSilva95
parent 8f241a0a84
commit 50195f75ca
1 changed files with 21 additions and 1 deletions

View File

@ -2,4 +2,24 @@
### Instructions
Write a function named `maxNum`, which accepts `int` parameters, and returns the maximum number of the three.
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
$
```