Created
April 27, 2016 14:23
-
-
Save uplus/88586e32cf131965df28f3da2e91822b to your computer and use it in GitHub Desktop.
This file contains 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 <stdio.h> | |
int main(){ | |
int a = 0; | |
if (a == 0) | |
for(int i = 0; i < 10; ++i) | |
if (i % 2 == 0) | |
printf("even\n"); | |
else if (i % 2 != 0) | |
printf("odd\n"); | |
else | |
printf("wow\n"); | |
else | |
printf("damn it!\n"); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment