Advertisement
DraKiNs

[APP] Gerador de Nomes

Jun 26th, 2011
442
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 1.24 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <time.h>
  4. #include <conio.h>
  5.  
  6. #define MAX_NAMES 30
  7. #define MAX_CHARS 24
  8.  
  9.    
  10. int main()
  11. {
  12.     system("title [iPs Team] - Gerador de nomes");
  13.     system("color 1f");
  14.    
  15.    
  16.     //Variaveis
  17.     char sNames[MAX_NAMES][MAX_CHARS] = { "BlueWarrior", "RedHero", "BlueFalcon", "GosthWarrior", "HeadShot", "blackstar", "whitestar", "toxicgirl", "sexygir", "bangman", "toxicbear", "streetdog", "ultrapain", "snikard", "dark angel" };   
  18.    
  19.     //Dados
  20.     printf("\tGerador de Nicks criado por [iPs]GonçaloRebelo\n");
  21.     printf("\tEste gerador foi feito para quem tem dificuldades em escolher nicks \n");
  22.     printf("\tAgradecimentos: [iPs]Crush/[iPs]Drakins\n");
  23.     printf("\tTodos os direitos reservados, [iPs]TeaM Projects 2011\n");
  24.     printf("\n");
  25.  
  26.  
  27.  
  28.     //Processamento
  29.     system("pause");
  30.  
  31.     printf("\nGerando um nome...\n");
  32.     _sleep(3000);
  33.  
  34.     srand (time(NULL));
  35.     printf("Nome gerador foi: %s \n", sNames[rand() % MAX_NAMES]); 
  36.    
  37.     //Final
  38.     return system("pause");
  39. }
  40.  
  41.  
  42. /*
  43.   Name: Gerador de Nicks [iPs]TeaM
  44.   Copyright: Todos os direitos Reservados, 2011
  45.   Author:  [iPs]GonçaloRebelo
  46.   Date: 23/06/2011 - 21:32 (Portugal)
  47.   Description: Não tem idéias para nomes? Não se preucupe, use este aplicativo!
  48. */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement