Skip to content

Instantly share code, notes, and snippets.

@joffilyfe
Created January 19, 2015 01:33
Show Gist options
  • Save joffilyfe/35429d8349030aec9740 to your computer and use it in GitHub Desktop.
Save joffilyfe/35429d8349030aec9740 to your computer and use it in GitHub Desktop.
#include <stdio.h>
int main(void) {
int entrada;
while(scanf("%d", &entrada) != EOF) {
if (entrada) {
printf("vai ter duas!\n");
} else {
printf("vai ter copa!\n");
}
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment