Problem | fizzbuzz |
---|---|
User | Indy39910 |
Submission Time | 2025-02-20 18:05:10 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
fizzbuzz.cpp: In function ‘int main()’:
fizzbuzz.cpp:9:20: error: invalid operands of types ‘const char [9]’ and ‘int’ to binary ‘operator/’
9 | cout << "FizzBuzz"/n;
| ~~~~~~~~~~^~
| | |
| | int
| const char [9]
fizzbuzz.cpp:12:16: error: invalid operands of types ‘const char [5]’ and ‘int’ to binary ‘operator/’
12 | cout << "Fizz"/n;
| ~~~~~~^~
| | |
| | int
| const char [5]
fizzbuzz.cpp:15:16: error: invalid operands of types ‘const char [5]’ and ‘int’ to binary ‘operator/’
15 | cout << "Buzz"/n;
| ~~~~~~^~
| | |
| | int
| const char [5]