| Problem | fizzbuzz |
|---|---|
| User | Dubidubidaphdaph |
| Submission Time | 2026-06-22 15:54:17 |
| Score | 0 |
| Max Time | N/A |
| Max Memory | N/A |
Owl Get a Life
fizzbuzz.cpp: In function ‘int main()’:
fizzbuzz.cpp:10:16: error: expected primary-expression before ‘/’ token
10 | cout << i << /n;
| ^
fizzbuzz.cpp:10:17: error: ‘n’ was not declared in this scope
10 | cout << i << /n;
| ^
fizzbuzz.cpp:13:10: error: lvalue required as left operand of assignment
13 | if (i%A=0) {
| ^
fizzbuzz.cpp:14:21: error: expected primary-expression before ‘/’ token
14 | cout << "Fizz" << /n;
| ^
fizzbuzz.cpp:14:22: error: ‘n’ was not declared in this scope
14 | cout << "Fizz" << /n;
| ^
fizzbuzz.cpp:16:10: error: lvalue required as left operand of assignment
16 | if (i%B=0) {
| ^
fizzbuzz.cpp:17:21: error: expected primary-expression before ‘/’ token
17 | cout << "Buzz" << /n;
|