Problem fizzbuzz
User Mineshafter61
Submission Time 2024-01-16 13:21:46
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;
| ~~~^~~
| | |
| | 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;
| ~~~^~~
fizzbuzz.cpp:4:30: note: no known conversion for argument 1 from ‘std::istream’ {aka ‘std::basic_istream<char>’} to ‘int’
In file included from /usr/include/c++/9/bits/basic_string.h:48,
from /usr/include/c++/9/string:55,
from /usr/include/c++/9/bits/locale_classes.h:40,