Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <stdlib.h>
- #include <time.h>
- #include <conio.h>
- #define MAX_NAMES 30
- #define MAX_CHARS 24
- int main()
- {
- system("title [iPs Team] - Gerador de nomes");
- system("color 1f");
- //Variaveis
- char sNames[MAX_NAMES][MAX_CHARS] = { "BlueWarrior", "RedHero", "BlueFalcon", "GosthWarrior", "HeadShot", "blackstar", "whitestar", "toxicgirl", "sexygir", "bangman", "toxicbear", "streetdog", "ultrapain", "snikard", "dark angel" };
- //Dados
- printf("\tGerador de Nicks criado por [iPs]GonçaloRebelo\n");
- printf("\tEste gerador foi feito para quem tem dificuldades em escolher nicks \n");
- printf("\tAgradecimentos: [iPs]Crush/[iPs]Drakins\n");
- printf("\tTodos os direitos reservados, [iPs]TeaM Projects 2011\n");
- printf("\n");
- //Processamento
- system("pause");
- printf("\nGerando um nome...\n");
- _sleep(3000);
- srand (time(NULL));
- printf("Nome gerador foi: %s \n", sNames[rand() % MAX_NAMES]);
- //Final
- return system("pause");
- }
- /*
- Name: Gerador de Nicks [iPs]TeaM
- Copyright: Todos os direitos Reservados, 2011
- Author: [iPs]GonçaloRebelo
- Date: 23/06/2011 - 21:32 (Portugal)
- Description: Não tem idéias para nomes? Não se preucupe, use este aplicativo!
- */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement