Created
June 5, 2012 13:02
-
-
Save eduardodx/2874836 to your computer and use it in GitHub Desktop.
mat
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() { | |
char opcao; | |
scanf("%c", &opcao); | |
switch(opcao) { | |
case 'a': | |
// seu codigo | |
break; | |
case 'b': | |
// seu codigo | |
break; | |
case 'c': | |
// seu codigo | |
break; | |
} | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment