Problem | platonic |
---|---|
User | Chalee |
Submission Time | 2025-06-19 11:07:50 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
platonic.cpp: In function ‘int main()’:
platonic.cpp:8:21: error: ‘N’ was not declared in this scope
8 | for(int i = 0; i < N; i++){
| ^
platonic.cpp:11:2: error: ‘sort’ was not declared in this scope; did you mean ‘qsort’?
11 | sort(arr, arr + 3);
| ^~~~
| qsort
platonic.cpp:12:16: error: expected ‘;’ before ‘}’ token
12 | cout << arr[2]
| ^
| ;
13 | }
| ~