Problem fizzbuzz
User Mineshafter61
Submission Time 2024-01-16 13:20:53
Score 0
Max Time N/A
Max Memory N/A

Compile Error

fizzbuzz.cpp: In function ‘int main()’:
fizzbuzz.cpp:4:30: error: no match for ‘operator<<’ (operand types are ‘std::istream’ {aka ‘std::basic_istream<char>’} and ‘int’)
4 | int main () {int n, a, b; cin<<n<<a<<b; for (int i = 1; i <=n; i++){if (!(i%a|i%b)) cout<<"FizzBuzz"<<endl; else if (!i%a)cout<<"Fizz"<<endl; else if (!i%b) cout<<"Buzz"<<endl; else cout <<i<<endl;
| ~~~^~~
| | |
| | int
| std::istream {aka std::basic_istream<char>}
fizzbuzz.cpp:4:30: note: candidate: ‘operator<<(int, int)’ <built-in>
4 | int main () {int n, a, b; cin<<n<<a<<b; for (int i = 1; i <=n; i++){if (!(i%a|i%b)) cout<<"FizzBuzz"<<endl; else if (!i%a)cout<<"Fizz"<<endl; else if (!i%b) cout<<"Buzz"