-->
当前位置:首页 > 题库

PROGRAMMING:Using pointer to return multiple function values

Luz5年前 (2021-05-10)题库398
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