Problem fizzbuzz
User howdoicode
Submission Time 2025-02-24 15:24:48
Score 0
Max Time N/A
Max Memory N/A

Compile Error

fizzbuzz.cpp: In function ‘int main()’:
fizzbuzz.cpp:5:12: error: ‘fizz’ was not declared in this scope; did you mean ‘fuzz’?
5 | int fuzz; fizz, buzz;
| ^~~~
| fuzz
fizzbuzz.cpp:5:18: error: ‘buzz’ was not declared in this scope; did you mean ‘fuzz’?
5 | int fuzz; fizz, buzz;
| ^~~~
| fuzz
fizzbuzz.cpp:18:20: error: expected ‘;’ before ‘}’ token
18 | cout << t << "/"
| ^
| ;
19 | }
| ~
fizzbuzz.cpp:24:1: error: expected ‘}’ at end of input
24 | }
| ^
fizzbuzz.cpp:4:12: note: to match this ‘{’
4 | int main() {
| ^