Jump to content
Fórum Script Brasil
  • 0

Como comparar letra vogal ou consoante?


wharley

Question

2 answers to this question

Recommended Posts

  • 0

Opa, eu fiz um exemplo bem simples, talvez te ajude.

#include <stdio.h>
#include <stdlib.h>


   int main() {
       
    char letra;
       
    printf("Digite um letra do alfabeto:");
    scanf("%s",&letra);
    
    if((letra == 'a') || (letra == 'e') || (letra == 'i') || (letra == 'o') || (letra == 'u')) 
    {   
       printf("\n\nA letra e vogal!!");
    }  
    else
    {
       printf("\n\nA letra e consoante!!");
    }       
   
   printf("\n\n");
   system("pause");
        
}//main

Edited by Binder
Link to comment
Share on other sites

  • 0

Amigo, existe uma função chamada strchr() que facilita muito os nossos trabalhos. Ela retornará 0 caso não ache o caracter.

Use-a da seguinte forma:


#include <ctype.h> //Sempre inclua essa biblioteca para usar essa função.
#include <stdio.h>
#include <stdlib.h>

int main(int argc,char **argv)
{
char caracter = 'a';
if(strchr("aeiou",caracter)!=0)
{
puts("E vogal!");
}
else
{
puts("E consoante!");
}
system("pause");
return EXIT_SUCCESS;
}
[/codebox]

Onde o 1º parâmetro você coloca todas as palavras que quer localizar e no 2º parâmetro a variável onde deseja comparar.

Edited by bruce845
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652.1k
×
×
  • Create New...