Problem | fizzbuzz |
---|---|
User | noel |
Submission Time | 2024-06-20 13:40:34 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
fizzbuzz.cpp: In function ‘int main()’:
fizzbuzz.cpp:7:14: error: lvalue required as left operand of assignment
7 | if (n % a = 0){
| ^
fizzbuzz.cpp:8:15: error: expected ‘;’ before ‘}’ token
8 | cout<<"Fizz"
| ^
| ;
9 | }
| ~
fizzbuzz.cpp:10:19: error: lvalue required as left operand of assignment
10 | else if (n % b = 0){
| ^
fizzbuzz.cpp:11:15: error: expected ‘;’ before ‘}’ token
11 | cout<<"Buzz"
| ^
| ;
12 | }
| ~
fizzbuzz.cpp:13:14: error: expected ‘;’ before ‘}’ token
13 | else cout<<n
| ^
| ;
14 |
15 | }
| ~