| Problem | fizzbuzz |
|---|---|
| User | Ronaldo7 |
| Submission Time | 2026-06-22 22:28:11 |
| Score | 0 |
| Max Time | N/A |
| Max Memory | N/A |
Owl Get a Life
fizzbuzz.cpp:3:2: error: invalid preprocessing directive #def; did you mean #ifdef?
3 | #def int long long
| ^~~
| ifdef
fizzbuzz.cpp: In function ‘int main()’:
fizzbuzz.cpp:11:9: error: ‘AB’ was not declared in this scope; did you mean ‘B’?
11 | if (i%AB == 0 ){
| ^~
| B
fizzbuzz.cpp:12:22: error: expected ‘;’ before ‘}’ token
12 | cout<<"FizzBuzz\n"
| ^
| ;
13 | }else if (i%A ==0){
| ~
fizzbuzz.cpp:14:18: error: expected ‘;’ before ‘}’ token
14 | cout<<"Fizz\n"
| ^
| ;
15 | }else if (i%B == 0){
| ~
fizzbuzz.cpp:16:18: error: expected ‘;’ before ‘}’ token
16 | cout<<"Buzz\n"
| ^
| ;
17 |
18 | }
|