Skip to content

Instantly share code, notes, and snippets.

@enile8
Created January 5, 2012 03:58
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 enile8/1563639 to your computer and use it in GitHub Desktop.
Save enile8/1563639 to your computer and use it in GitHub Desktop.
FizzBuzz in C++
#include <iostream>
using namespace std;
int main(){
int i;
for (i = 0; i < 100; i++)
if (i % 3 == 0 && i % 5 == 0)
cout<<i<<" FizzBuzz\n";
else if (i % 3 == 0)
cout<<i<<" Fizz\n";
else if (i % 5 == 0)
cout<<i<<" Buzz\n";
else
cout<<i<<"\n";
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment