Skip to content

Instantly share code, notes, and snippets.

@djkonro
Last active June 18, 2016 22:16
Show Gist options
  • Save djkonro/694fd923813eb32f9bcac685aeadf736 to your computer and use it in GitHub Desktop.
Save djkonro/694fd923813eb32f9bcac685aeadf736 to your computer and use it in GitHub Desktop.
#include <iostream>
using namespace std;
int main(void)
{
for(int i = 1; i <= 100; i++){
if ((i % 3 == 0) && (i % 5 == 0)) {
cout << "CracklePop" << endl;
} else if (i % 3 == 0) {
cout << "Crackle" << endl;
} else if (i % 5 == 0) {
cout << "Pop" << endl;
} else {
cout << i << endl;
}
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment