Problem | descsort |
---|---|
User | Adam |
Submission Time | 2024-06-19 11:15:39 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
descsort.cpp: In function ‘int main()’:
descsort.cpp:4:17: error: expected ‘;’ before ‘int’
4 | int n; cin >> n
| ^
| ;
5 | int arr[n];
| ~~~
descsort.cpp:7:10: error: ‘arr’ was not declared in this scope
7 | cin >> arr[i];
| ^~~
descsort.cpp:8:10: error: ‘arr’ was not declared in this scope
8 | cout << arr[0]+arr[1] << "\n"
| ^~~
descsort.cpp: At global scope:
descsort.cpp:11:1: error: expected declaration before ‘}’ token
11 | }
| ^