Skip to content

Instantly share code, notes, and snippets.

@goose121
Created January 3, 2018 18:05
Show Gist options
  • Select an option

  • Save goose121/4f73fad8e3fc5a808caeba316aa1c584 to your computer and use it in GitHub Desktop.

Select an option

Save goose121/4f73fad8e3fc5a808caeba316aa1c584 to your computer and use it in GitHub Desktop.
FizzBuzz
#include <iostream>
int main(){
for(int i = 1; i <= 100000; i++)
std::cout << "\e[s" << i << "\e[u" << ((i % 3)?"":"fizz\e[K") << ((i % 5)?"":"buzz\e[K") << std::endl;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment