PROGRAMMING:Two dimensional matrix as function parameter
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
###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