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

PROGRAMMING:Two dimensional matrix as function parameter

Luz5年前 (2021-05-10)题库403
There is a 3 × 4 matrix, find the minimum value of all its elements. Requirements: define a three row four column two-dimensional integer array, write a function to find the minimum value of its elements.
###Input format:
Assign values to arrays.
###Output format:
Min = the minimum value of the array element.
###Input example:
```in
1 2 3 4 0 9 8 7 3 5 7 9
```
###Output example:
```out
min=0
```







answer:If there is no answer, please comment