Problem | medianstring |
---|---|
User | qifengle |
Submission Time | 2025-03-16 22:31:36 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
medianstring.cpp: In function ‘int main()’:
medianstring.cpp:11:9: error: request for member ‘begin’ in ‘a’, which is of non-class type ‘int [n]’
11 | sort(a.begin(), a.end());
| ^~~~~
medianstring.cpp:11:20: error: request for member ‘end’ in ‘a’, which is of non-class type ‘int [n]’
11 | sort(a.begin(), a.end());
| ^~~
medianstring.cpp:15:24: error: expected ‘;’ before ‘}’ token
15 | m = (a[j] + a[j+1])/2
| ^
| ;
16 | }
| ~