diff --git a/subjects/mobile-dev/max-num/README.md b/subjects/mobile-dev/max-num/README.md index 224175eb..60c0a41f 100644 --- a/subjects/mobile-dev/max-num/README.md +++ b/subjects/mobile-dev/max-num/README.md @@ -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 +$ +```