| Problem | sum2 |
|---|---|
| User | Zubair |
| Submission Time | 2026-06-25 09:43:43 |
| Score | 0 |
| Max Time | N/A |
| Max Memory | N/A |
Owl Get a Life
sum2.cpp: In function ‘int main()’:
sum2.cpp:7:10: error: expected ‘;’ before ‘vector’
7 | cin >> n
| ^
| ;
8 | vector<int> a(n);
| ~~~~~~
sum2.cpp:10:10: error: ‘a’ was not declared in this scope
10 | cin << a[i]
| ^
sum2.cpp:12:9: error: ‘a’ was not declared in this scope
12 | sort(a.begin(), a.end(), greater<int>());
| ^