Problem minimum
User Water
Submission Time 2023-06-26 15:55:10
Score 0
Max Time N/A
Max Memory N/A

Compile Error

minimum.cpp: In function ‘int findMin(int, int*)’:
minimum.cpp:4:9: error: declaration of ‘int A [0]’ shadows a parameter
4 | int A[0]=min;
| ^
minimum.cpp:4:11: error: array must be initialized with a brace-enclosed initializer
4 | int A[0]=min;
| ^~~
minimum.cpp:6:11: error: invalid operands of types ‘int’ and ‘<unresolved overloaded function type>’ to binary ‘operator<’
6 | if (A[i]<min) {
| ~~~~^~~~
minimum.cpp:7:9: error: cannot resolve overloaded function ‘min’ based on conversion to type ‘int’
7 | A[i]=min;
| ^~~
minimum.cpp:10:9: error: cannot resolve overloaded function ‘min’ based on conversion to type ‘int’
10 | return min;
| ^~~
minimum.cpp:11:12: error: a function-definition is not allowed here before ‘{’ token
11 | int main() {
| ^
minimum.cpp:13:1: error: expected ‘}’ at end of input