Barao Posted May 14, 2015 Report Share Posted May 14, 2015 Ola pessoal, alguém me ajude estou tentando criar um vetor de caracteres e depois uma string, e em seguida comparar se neste vetor contem os mesmos caracteres da string e cada caractere que tiver me retornar um valor inteiro. Quote Link to comment Share on other sites More sharing options...
0 vangodp Posted May 14, 2015 Report Share Posted May 14, 2015 vetor de caracteres e depois uma string não é a mesma coisa? Que linguagem é esse? Assim é difícil ajudar, dar más detalhes vai agilizar a ajuda. Quote Link to comment Share on other sites More sharing options...
0 Barao Posted May 15, 2015 Author Report Share Posted May 15, 2015 (edited) //LINGUAGEM C #include <stdio.h> int main (int argc, char** argv) { char letras [ ] = "abcde"; char LETRAS [ ] = "ABCDE"; char recebe_string; printf("Entre com a String: "); scanf("%s", recebe_string); /*AQUI EU GOSTARIA DE VERIFICAR A OCORRENCIA DE CARACTERE POR CARACTERE DA VARIAVEL recebe_string NAS DUAS VARIAVEIS letras e LETRAS retornar um valor para esta ocorrencia. Exemplo: Se a String digitada fo AbC gostaria que retornasse 1 se tiver 'a' em letra ou LETRA, retorne 2 se tiver 'b' em letra ou LETRA, retorne 3 se tiver 'C' em letra ou LETRA. */ return 0; } Edited May 15, 2015 by Barao Quote Link to comment Share on other sites More sharing options...
0 vangodp Posted May 15, 2015 Report Share Posted May 15, 2015 //LINGUAGEM C #include <stdio.h> #include <stdlib.h> #include <ctype.h> void flush_in() { int ch; while ( ( ch = fgetc ( stdin ) ) != EOF && ch != '\n' ) {} } int main ( int argc, char **argv ) { int i = 0; char letras [ ] = "abcde"; int tam = sizeof(letras)/sizeof(letras[0]); char* entrada = (char*) calloc( tam, sizeof(letras[0]) ); printf ( "Entre com a String: " ); fgets ( entrada , tam, stdin); flush_in(); //chamar esa funçao antes de ler chars e strings. é a melhor forma de limpar o buffer que existe. for ( i = 0; i<tam-1; i++ ){ if ( tolower(entrada[i]) == tolower(letras[i]) ){ printf("%d\n", i+1); }else{ printf("%d\n", 0); } } free(entrada); return 0; } Para esse programa não importa si é maiúscula ou minuscula assim você evita ter letra e LETRA, tudo é automático, si envés de char letras [ ] = "abcde"; você por char letras [ ] = "abcdefghij"; o programa só vai aceitar a mesma quantidade de letras, e o loop que as compara vai ficar configurado automaticamente para se executar a mesma quantidade de vezes. :ninja: Sorte! Quote Link to comment Share on other sites More sharing options...
0 Barao Posted May 15, 2015 Author Report Share Posted May 15, 2015 Pow cara deu certo muito obrigado. Quote Link to comment Share on other sites More sharing options...
Question
Barao
Ola pessoal, alguém me ajude estou tentando criar um vetor de caracteres e depois uma string, e em seguida comparar se neste vetor contem os mesmos caracteres da string e cada caractere que tiver me retornar um valor inteiro.
Link to comment
Share on other sites
4 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.