Problem fizzbuzz
User Ignatius
Submission Time 2025-03-05 14:08:09
Score 0
Max Time N/A
Max Memory N/A

Compile Error

fizzbuzz.cpp: In function ‘int main()’:
fizzbuzz.cpp:5:34: error: expected ‘;’ before ‘int’
5 | ios_base::sync_with_stdio(false)
| ^
| ;
6 | int N, A, B;
| ~~~
fizzbuzz.cpp:7:12: error: ‘N’ was not declared in this scope
7 | cin >> N >> A >> B;
| ^
fizzbuzz.cpp:7:17: error: ‘A’ was not declared in this scope
7 | cin >> N >> A >> B;
| ^
fizzbuzz.cpp:7:22: error: ‘B’ was not declared in this scope
7 | cin >> N >> A >> B;
| ^
fizzbuzz.cpp:11:32: error: no match for ‘operator<<’ (operand types are ‘std::basic_ostream<char>’ and ‘<unresolved overloaded function type>’)
11 | cout << "FizzBuzz" << end
| ~~~~~~~