Created
May 9, 2014 23:23
-
-
Save anonymous/d733ca6cc4e9296d45ee 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> | |
#define SIM 1 | |
#define NAO 0 | |
int main() { | |
//vamos ver se vai ter copa mesmo... | |
int vai_ter_copa; | |
// primeiro disseram que ia ter copa, fiquei feliz =) | |
vai_ter_copa = SIM; | |
// depois disseram que não ia ter copa, fiquei triste =\ | |
vai_ter_copa = NAO; | |
// mas e aí? Quero saber se vai ter ou não | |
if (vai_ter_copa == SIM) | |
printf ("Vai ter copa sim"); | |
else | |
printf ("Não vai ter copa"); | |
// fiquei confuso com o resultado D: | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Daora