Problem fizzbuzz
User EuniceLoh
Submission Time 2024-11-07 11:02:58
Score 0
Max Time N/A
Max Memory N/A

Compile Error

fizzbuzz.cpp: In function ‘int32_t main()’:
fizzbuzz.cpp:12:18: error: lvalue required as left operand of assignment
12 | } else if (i%a=0){
| ^
fizzbuzz.cpp:14:17: error: lvalue required as left operand of assignment
14 | } else if(i%b=0){
| ^
fizzbuzz.cpp:18:10: error: expected ‘;’ before ‘}’ token
18 | return 0
| ^
| ;
19 | }
| ~