Skip to content

Instantly share code, notes, and snippets.

@LisGein
Last active August 29, 2015 14:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save LisGein/11c1f313b394af0de1b3 to your computer and use it in GitHub Desktop.
Save LisGein/11c1f313b394af0de1b3 to your computer and use it in GitHub Desktop.
#include <iostream>
using namespace std;
int main()
{
int x;
for (x = 1; x <= 100; x++)
{
if (x % 3 == 0)
cout << "Fuzzy";
if (x % 5 == 0)
cout << "Wuzzy";
};
system("pause");
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment