Problem | 0405 |
---|---|
User | LiuZq |
Submission Time | 2025-04-12 13:07:33 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
0405.cpp: In function ‘int main()’:
0405.cpp:5:5: error: ‘ll’ was not declared in this scope
5 | ll a, b;
| ^~
0405.cpp:6:12: error: ‘a’ was not declared in this scope
6 | cin >> a >> b;
| ^
0405.cpp:6:17: error: ‘b’ was not declared in this scope
6 | cin >> a >> b;
| ^
0405.cpp:7:7: error: expected ‘;’ before ‘seive’
7 | ll seive[b];
| ^~~~~~
| ;
0405.cpp:8:12: error: expected ‘;’ before ‘i’
8 | for (ll i = 0; i < b; i++) seive[i] = -1;
| ^~
| ;
0405.cpp:8:20: error: ‘i’ was not declared in this scope
8 | for (ll i = 0; i < b; i++) seive[i] = -1;
| ^
0405.cpp:8:32: error: ‘seive’ was not declared in this scope
8 | for (ll i = 0; i < b; i++) seive[i] = -1;
| ^~~~~<