Lógica, perguntado por taynarodriguess, 1 ano atrás

Criar um programa em C para ler a sigla de um estado de uma pessoa e imprimir uma das mensagens:
- Carioca; - Paulista; - Amazonense; - Pernambucano; - Baiano; - Outros estados.

Soluções para a tarefa

Respondido por DiogoHenriqueRDN
4
int main(){
    char sigla_estado[2];
    printf("\nDigite a sigla de um Estado\n");
    scanf("%s",&sigla_estado);

    if (! stricmp(sigla_estado,"AC"))
       printf("\nACREANO\n");
       else if (! stricmp(sigla_estado,"AL"))
         printf("\nALAGOANO\n");
       else if (! stricmp(sigla_estado,"AP"))
         printf("\nAMAPAENSE\n");
       else if (! stricmp(sigla_estado,"AM"))
         printf("\nAMAZONENSE\n");
       else if (! stricmp(sigla_estado,"BA"))
         printf("\nBAIANO\n");
       else if (! stricmp(sigla_estado,"CE"))
         printf("\nCEARENSE\n");
       else if (! stricmp(sigla_estado,"DF"))
         printf("\nBRASILIENSE\n");
       else if (! stricmp(sigla_estado,"ES"))
         printf("\nCAPIXABA OU ESPIRITO-SANTENSE\n");
       else if (! stricmp(sigla_estado,"GO"))
         printf("\nGOIANO\n");
       else if (! stricmp(sigla_estado,"MA"))
         printf("\nMARANHENSE\n");
       else if (! stricmp(sigla_estado,"MT"))
         printf("\nMATO-GROSSENSE\n");
       else if (! stricmp(sigla_estado,"MS"))
         printf("\nMATO-GROSSENSE-DO-SUL, SUL-MATO-GROSSENSE\n");
       else if (! stricmp(sigla_estado,"MG"))
         printf("\nMATO-GROSSENSE\n");
       else if (! stricmp(sigla_estado,"PA"))
         printf("\nPARAENSE\n");
       else if (! stricmp(sigla_estado,"PB"))
         printf("\nPARAIBANO\n");
       else if (! stricmp(sigla_estado,"PR"))
         printf("\nPARANAENSE\n");
       else if (! stricmp(sigla_estado,"PE"))
         printf("\nPERNAMBUCANO\n");
       else if (! stricmp(sigla_estado,"PI"))
         printf("\nPIAUIENSE\n");
       else if (! stricmp(sigla_estado,"RJ"))
         printf("\nFLUMINENSE, CARIOCA\n");
       else if (! stricmp(sigla_estado,"RN"))
         printf("\nPOTIGUAR, RIO-GRANDENSE-DO-NORTE\n");
       else if (! stricmp(sigla_estado,"RS"))
         printf("\nGAUCHO, RIO-GRANDENSE-DO-SUL\n");
       else if (! stricmp(sigla_estado,"RO"))
         printf("\nRONDONIANO\n");
       else if (! stricmp(sigla_estado,"RR"))
         printf("\nRORAIMENSE\n");
       else if (! stricmp(sigla_estado,"SC"))
         printf("\nCATARINENSE\n");
       else if (! stricmp(sigla_estado,"SP"))
         printf("\nPAULISTA\n");
       else if (! stricmp(sigla_estado,"SE"))
         printf("\nSERGIPANO, SERGIPENSE\n");
       else if (! stricmp(sigla_estado,"TO"))
         printf("\nTOCANTINENSE\n");
       else
         printf("\nSIGLA NAO EXISTE\n");
         printf("\n\n");

 
      return(0);
}


Perguntas interessantes