#include<iostream> using namespace std; int main(){ for(int i=0;i++<100;){ cout<<(i%3==0&&i%5==0)?"FizzBuzz":(i%3==0?"Fizz":(i%5==0?"Buzz":i)); cout<<endl; }; return 0; } I need more less code for golf coding in c++ and also best way to convert integer to string