| Problem | fizzbuzz |
|---|---|
| User | joeioel |
| Submission Time | 2026-04-15 14:46:26 |
| Score | 0 |
| Max Time | N/A |
| Max Memory | N/A |
Owl Get a Life
fizzbuzz.cpp: In function ‘int main()’:
fizzbuzz.cpp:7:2: error: expected initializer before ‘cin’
7 | cin >> n >> a >>b;
| ^~~
fizzbuzz.cpp:10:19: error: ‘b’ was not declared in this scope
10 | if (count%(a*b)==0){
| ^
fizzbuzz.cpp:11:28: error: expected ‘;’ before ‘}’ token
11 | cout << "FizzBuzz"}
| ^
| ;
fizzbuzz.cpp:13:24: error: expected ‘;’ before ‘}’ token
13 | cout << "Fizz"}
| ^
| ;
fizzbuzz.cpp:15:24: error: expected ‘;’ before ‘}’ token
15 | cout << "Buzz"}
| ^
| ;
fizzbuzz.cpp:17:23: error: expected ‘;’ before ‘count’
17 | cout << count
| ^
|