Problem | fizzbuzz |
---|---|
User | jambusk |
Submission Time | 2025-06-16 17:36:58 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
fizzbuzz.cpp: In function ‘int main()’:
fizzbuzz.cpp:7:6: error: redeclaration of ‘int A’
7 | int A = 3;
| ^
fizzbuzz.cpp:5:6: note: ‘int A’ previously declared here
5 | int A,B,N;
| ^
fizzbuzz.cpp:8:6: error: redeclaration of ‘int B’
8 | int B = 5;
| ^
fizzbuzz.cpp:5:8: note: ‘int B’ previously declared here
5 | int A,B,N;
| ^
fizzbuzz.cpp:9:6: error: redeclaration of ‘int N’
9 | int N = 100;
| ^
fizzbuzz.cpp:5:10: note: ‘int N’ previously declared here
5 | int A,B,N;
| ^