Problem | skips |
---|---|
User | AliLam |
Submission Time | 2025-06-17 08:59:44 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
skips.cpp: In function ‘int main()’:
skips.cpp:6:20: error: ‘n’ was not declared in this scope
6 | for(int i = 0; i < n; i += 2) {
| ^
skips.cpp:7:10: error: ‘arr’ was not declared in this scope
7 | fuel += arr[i];
| ^~~
skips.cpp:9:12: error: ‘d’ was not declared in this scope
9 | if(fuel - d < 0) {
| ^
skips.cpp:12:10: error: ‘d’ was not declared in this scope
12 | fuel -= d;
| ^
skips.cpp:16:17: error: ‘d’ was not declared in this scope
16 | block += fuel / d * 2;
| ^
skips.cpp:19:20: error: ‘n’ was not declared in this scope
19 | for(int i = 1; i < n; i += 2) {
| ^
skips.cpp:20:10: error: ‘arr’ was not declared in this scope
20 | fuel += arr[i];
| ^~~
skips.cpp:32:19: error: expected ‘}’ at end of input
32 | else cout << block;