Hacker News new | ask | show | jobs
by Ozark 4933 days ago
my best c++ solution scores 75 points with 126 characters

    #include<iostream>
    main(){for(int i=0;i++<100;){if(i%5&&i%3)std::cout<<i;std::cout<<(i%3?"":"Fizz")<<(i%5?"":"Buzz")<<'\n';}}