PROGRAMMING:Using pointer to return multiple function values
Read in n integers and * * call max_ Min() function to find the maximum and minimum of the N numbers * *.
###Input format:
There are two lines of input:
The first line is n-value;
The second line is n numbers.
###Output format:
Output maximum and minimum values.
###Input example:
Here is a set of inputs. For example:
```in
five
8 9 12 0 3
```
###Output example:
The corresponding output is given here. For example:
```out
max = 12
min = 0
```
answer:If there is no answer, please comment
###Input format:
There are two lines of input:
The first line is n-value;
The second line is n numbers.
###Output format:
Output maximum and minimum values.
###Input example:
Here is a set of inputs. For example:
```in
five
8 9 12 0 3
```
###Output example:
The corresponding output is given here. For example:
```out
max = 12
min = 0
```
answer:If there is no answer, please comment