Problem | foodchain |
---|---|
User | quackquack |
Submission Time | 2023-11-14 14:01:37 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
foodchain.cpp: In function ‘int main()’:
foodchain.cpp:11:14: error: expected ‘;’ before ‘total’
11 | total %= mod
| ^
| ;
12 | total *= b;
| ~~~~~
foodchain.cpp:13:14: error: expected ‘;’ before ‘total’
13 | total %= mod
| ^
| ;
14 | total *= c;
| ~~~~~
foodchain.cpp:15:14: error: expected ‘;’ before ‘total’
15 | total %= mod
| ^
| ;
16 | total *= d;
| ~~~~~
foodchain.cpp:17:14: error: expected ‘;’ before ‘total’
17 | total %= mod
| ^
| ;
18 | total *= e;
| ~~~~~
foodchain.cpp:19:14: error: expected ‘;’ before ‘cout’
19 | total %= mod
| ^
| ;
20 | cout << total;
| ~~~~