Last active
June 18, 2016 22:16
-
-
Save djkonro/694fd923813eb32f9bcac685aeadf736 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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