Problem | descsort |
---|---|
User | Justyn |
Submission Time | 2024-06-19 10:03:47 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
descsort.cpp: In function ‘int main()’:
descsort.cpp:8:14: error: expected ‘;’ before ‘}’ token
8 | cin>>arr[i]
| ^
| ;
9 | }
| ~
descsort.cpp:10:11: error: request for member ‘begin’ in ‘arr’, which is of non-class type ‘int [n]’
10 | sort(arr.begin(), arr.end());
| ^~~~~
descsort.cpp:10:24: error: request for member ‘end’ in ‘arr’, which is of non-class type ‘int [n]’
10 | sort(arr.begin(), arr.end());
| ^~~