Problem cargomanagement
User PerihelionfromAphelion
Submission Time 2026-07-04 10:15:48
Score 0
Max Time N/A
Max Memory N/A

Compile Error

cargomanagement.cpp: In function ‘int main()’:
cargomanagement.cpp:8:7: error: ‘i’ was not declared in this scope
8 | for (i = 1; i <= n; i++) {
| ^
cargomanagement.cpp:13:7: error: ‘i’ was not declared in this scope; did you mean ‘it’?
13 | for (i = 0; i < n; i++) {
| ^
| it
cargomanagement.cpp:14:8: error: invalid type argument of unary ‘*’ (have ‘int’)
14 | if (*it % y == 0) cout << "YES";
| ^~