Created
June 21, 2018 17:39
-
-
Save netojocelino/a5d1fb4f72d6b1febb53dec000049727 to your computer and use it in GitHub Desktop.
mr-robot.md
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
| # Mr Robot | |
| Programa que mostra informações básicas da série de TV Mr. Robot da emissora USA Network | |
| Feito em 8 Nov 2016 | |
| ### Comandos: | |
| - award (mostrar os premios ganhados.) | |
| - seeing (Esta vendo tudo?) | |
| - join (Junte-se a nos.) | |
| - help (Mostra essa tela de ajuda.) | |
| > Este software é apenas para aprendizado, | |
| > divirta-se! | |
| ### Executar | |
| No Windows | |
| ```sh | |
| > mr-robot.exe comando | |
| ``` | |
| No Linux `Em breve` | |
| License | |
| ---- | |
| MIT | |
| Contribuidores | |
| ---- | |
| [Jocelino Alves](https://github.com/netojocelino) | |
| **Free Software, Hell Yeah!** |
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
| /* | |
| Author: Jocelino Alves | |
| Author URL: http://netojocelino.github.io | |
| Description: Programa que mostra informações básicas da série de TV Mr. Robot da emissora USA Network | |
| */ | |
| #include <stdio.h> | |
| #include <string.h> | |
| int main( int argc, char *argv[] ) { | |
| printf("Bem vindo ao Mr Robot.\n"); | |
| if( argc > 1 ) { | |
| if(strcmp(argv[1], "award") == 0) { | |
| printf("Voce possui:\n"); | |
| printf("\t2016:\n"); | |
| printf("\t\tDois Golden Globes\n"); | |
| printf("\t\tDois Primetime Emmy Awards\n"); | |
| printf("\t\tUm AFI Award\n"); | |
| printf("\t\tTres Critics Choice Television Awards\n"); | |
| printf("\t\tDois Gold Derby Awards\n"); | |
| printf("\t\tUm Television Critics Association Awards\n"); | |
| printf("\t\tUm Writers Guild of America\n"); | |
| printf("\t\tUm Peabody Awards\n"); | |
| printf("\t2015:\n"); | |
| printf("\t\tUm Gotham Awards\n"); | |
| printf("\t\tUm Satellite Awards\n"); | |
| printf("\t\tUm SXSW File Festival\n"); | |
| } | |
| else if(strcmp(argv[1], "seeing") == 0){ | |
| printf(" Voce esta vendo isso tambem????\n"); | |
| } | |
| else if(strcmp(argv[1], "join") == 0){ | |
| printf("_ www.whoismrrobot.com\n"); | |
| } | |
| else if(strcmp(argv[1], "help") == 0){ | |
| printf(" digite acao.\n"); | |
| printf(">> award mostrar os premios ganhados.\n"); | |
| printf(">> seeing Esta vendo tudo?\n"); | |
| printf(">> join Junte-se a nos.\n"); | |
| printf(">> help Mostra essa tela de ajuda.\n"); | |
| } | |
| }else{ | |
| printf("Voce pode me ajudar? Voce pode procurar? Voce ve alguma coisa?."); | |
| } | |
| return 0; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment