Problem sort
User blackpanther
Submission Time 2025-05-06 23:04:17
Score 0
Max Time N/A
Max Memory N/A

Compile Error

sort.cpp: In function ‘int main()’:
sort.cpp:12:11: error: request for member ‘begin’ in ‘arr’, which is of non-class type ‘int [n]’
12 | sort(arr.begin(), arr.end());
| ^~~~~
sort.cpp:12:24: error: request for member ‘end’ in ‘arr’, which is of non-class type ‘int [n]’
12 | sort(arr.begin(), arr.end());
| ^~~
sort.cpp:13:14: error: ‘i’ was not declared in this scope
13 | cout << arr[i];
| ^