Problem | fizzbuzz |
---|---|
User | pseudocoder101 |
Submission Time | 2025-06-16 15:09:23 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
fizzbuzz.cpp: In function ‘int main()’:
fizzbuzz.cpp:13:28: error: expected ‘;’ before ‘{’ token
13 | if (!((i%A==0)||(i%B==0)){
| ^
| ;
fizzbuzz.cpp:16:13: error: expected ‘)’ before ‘;’ token
16 | cout<<endl;
| ^
| )
fizzbuzz.cpp:13:6: note: to match this ‘(’
13 | if (!((i%A==0)||(i%B==0)){
| ^
fizzbuzz.cpp:19:1: error: expected ‘}’ at end of input
19 | }
| ^
fizzbuzz.cpp:3:11: note: to match this ‘{’
3 | int main(){
| ^