Problem fizzbuzz
User SankaSreenidh
Submission Time 2026-06-22 16:32:55
Score 0
Max Time N/A
Max Memory N/A

Compile Error

fizzbuzz.cpp:1:1: error: ‘nclude’ does not name a type
1 | nclude <bits/stdc++.h>
| ^~~~~~
fizzbuzz.cpp: In function ‘int main()’:
fizzbuzz.cpp:7:6: error: ‘cin’ was not declared in this scope
7 | cin >> n >> a >> b;
| ^~~
fizzbuzz.cpp:9:18: error: ‘cout’ was not declared in this scope
9 | if(i % a == 0) cout << "Fizz";
| ^~~~
fizzbuzz.cpp:10:18: error: ‘cout’ was not declared in this scope
10 | if(i % b == 0) cout << "Buzz";
| ^~~~
fizzbuzz.cpp:11:32: error: ‘cout’ was not declared in this scope
11 | if(i % a != 0 && i % b != 0) cout << i;
| ^~~~
fizzbuzz.cpp:12:3: error: ‘cout’ was not declared in this scope
12 | cout << '\n';
| ^~~~