Problem | fizzbuzz |
---|---|
User | Kjj511 |
Submission Time | 2023-06-20 14:46:41 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
fizzbuzz.cpp:14:26: error: stray ‘\’ in program
14 | cout << "FizzBuzz" << \n;
| ^
fizzbuzz.cpp:17:22: error: stray ‘\’ in program
17 | cout << "Fizz" << \n;
| ^
fizzbuzz.cpp:20:22: error: stray ‘\’ in program
20 | cout << "Buzz" << \n;
| ^
fizzbuzz.cpp:23:17: error: stray ‘\’ in program
23 | cout << i << \n;
| ^
fizzbuzz.cpp: In function ‘int main()’:
fizzbuzz.cpp:14:27: error: ‘n’ was not declared in this scope
14 | cout << "FizzBuzz" << \n;
| ^
fizzbuzz.cpp:17:23: error: ‘n’ was not declared in this scope
17 | cout << "Fizz" << \n;
| ^
fizzbuzz.cpp:20:23: error: ‘n’ was not declared in this scope
20 | cout << "Buzz" << \n;
|