Problem | fizzbuzz |
---|---|
User | AwkUngenially |
Submission Time | 2025-04-01 20:13:17 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
fizzbuzz.cpp:10:26: error: stray ‘\’ in program
10 | cout << "FizzBuzz" << \n;
| ^
fizzbuzz.cpp:12:22: error: stray ‘\’ in program
12 | cout << "Fizz" << \n;
| ^
fizzbuzz.cpp:14:22: error: stray ‘\’ in program
14 | cout << "Buzz" << \n;
| ^
fizzbuzz.cpp:16:22: error: stray ‘\’ in program
16 | cout << NUMBER << \n;
| ^
fizzbuzz.cpp: In function ‘int main()’:
fizzbuzz.cpp:10:27: error: ‘n’ was not declared in this scope
10 | cout << "FizzBuzz" << \n;
| ^
fizzbuzz.cpp:12:23: error: ‘n’ was not declared in this scope
12 | cout << "Fizz" << \n;
| ^
fizzbuzz.cpp:14:23: error: ‘n’ was not declared in this scope
14 | cout << "Buzz" << \n;