Jump to content
Fórum Script Brasil
  • 0

Ajuda pela mileonésima vez :D


TkD

Question

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main()
{
    //Variaveis
    char nome[30], sexo[10];
    int idade;
    
    //Entrada
    printf("Digite seu nome: ");
    gets(nome);
    printf("Digite o seu sexo(Mulher/Homem): ");
    gets(sexo);
    printf("Digite a sua idade: ");
    scanf("%d", &idade);
    system("cls");
    
    //Saida
    if (!strcmp(sexo,"mulher") || !strcmp(sexo,"Mulher") || !strcmp(sexo, "MULHER"))
    {
                             if else (idade<=24)
                             printf("%s Aceita!", nome);
    }
    else if (!strcmp(sexo,"mulher") || !strcmp(sexo,"Mulher") || !strcmp(sexo, "MULHER"))
    {
                             if else (idade>=25)
                             printf("%s não Aceita", nome);
    }
    else 
    printf("%s não Aceito!", nome);
    printf("\n\n");
    system("pause");
    }

Ta dando erro na sintaxe do dos if's <_<

Tentei fazer algumas modificações más mesmo assim não funcionou :(

Edited by TkD
Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

1 ) Opa, na minha opinião, acho desnecessário criar dois if para testar a idade da mulher.

if (!strcmp(sexo,"mulher") || !strcmp(sexo,"Mulher") || !strcmp(sexo, "MULHER"))
    {
                             if else (idade<=24)
                             printf("%s Aceita!", nome);
    }
    else if (!strcmp(sexo,"mulher") || !strcmp(sexo,"Mulher") || !strcmp(sexo, "MULHER"))
    {
                             if else (idade>=25)
                             printf("%s não Aceita", nome);
    }
2) if else não existe, apenas else if... Eu faria assim:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main()
{
    //Variaveis
    char nome[30], sexo[10];
    int idade;
    
    //Entrada
    printf("Digite seu nome: ");
    gets(nome);
    printf("Digite o seu sexo(Mulher/Homem): ");
    gets(sexo);
    printf("Digite a sua idade: ");
    scanf("%d", &idade);
    system("cls");
    
    //Saida
    if (!strcmp(sexo,"mulher") || !strcmp(sexo,"Mulher") || !strcmp(sexo, "MULHER")){
    
              if (idade<=24){
              printf("%s Aceita!\n", nome);}
                             
              else if (idade>=25){
              printf("%s não Aceita!\n", nome);}
    }
    
    else{
    printf("%s não Aceito!", nome);
    printf("\n\n");}
    
    system("pause");
    return 0;
    
}//main

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
      652k
×
×
  • Create New...