Problem | snowball |
---|---|
User | huyleisme |
Submission Time | 2024-01-26 17:59:47 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
snowball.cpp: In function ‘int main()’:
snowball.cpp:8:22: error: ISO C++ forbids comparison between pointer and integer [-fpermissive]
8 | for (int i = 0; i < s; i++) {
| ^
snowball.cpp:11:27: error: expected primary-expression before ‘)’ token
11 | sort(s, s+n, greater<int>);
| ^
snowball.cpp:15:22: error: ISO C++ forbids comparison between pointer and integer [-fpermissive]
15 | for (int i = 0; i < s; i++) {
| ^
snowball.cpp:16:18: error: invalid type argument of unary ‘*’ (have ‘int’)
16 | sum += s[i] ** 2;
| ^