gpt4 book ai didi

c - 我写了一个 if/elseif 语句,但它只给出了第一个条件答案,为什么?

转载 作者:行者123 更新时间:2023-11-30 15:13:53 24 4
gpt4 key购买 nike

我也遇到了错误(无法访问代码)

该程序的目的是给出英语单词的复数

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

int main(void)
{
char word[100];
int len;

printf("plz enter a word : ");
fflush(stdin);
gets(word);
len=strlen(word);
char nword[100]={(char)malloc(len+3)};

if(word[len-1]=='s'||'S')
{
strcpy(nword,word);
nword[len]='e';
nword[len+1]='s';
nword[len+2]='\0';
printf("the plural of your word is (%s)\n",nword);
free(nword);
}
if(word[len-1]=='s'||'S')
{
strcpy(nword,word);
nword[len]='e';
nword[len+1]='s';
nword[len+2]='\0';
printf("the plural of your word is (%s)\n",nword);
free(nword);
}
else if(word[len-1]=='x'||'X')
{
strcpy(nword,word);
nword[len]='e';
nword[len+1]='s';
nword[len+2]='\0';
printf("the plural of your word is (%s)\n",nword);
free(nword);
}
else if(word[len-1]=='z'||'Z')
{
strcpy(nword,word);
nword[len]='e';
nword[len+1]='s';
nword[len+2]='\0';
printf("the plural of your word is (%s)\n",nword);
free(nword);
}
else if(word[len-2]=='c'||'C'&&word[len-1]=='h'||'H')
{
strcpy(nword,word);
nword[len]='e';
nword[len+1]='s';
nword[len+2]='\0';
printf("the plural of your word is (%s)\n",nword);
free(nword);
}
else if(word[len-2]=='s'||'S'&&word[len-1]=='h'||'H')
{
strcpy(nword,word);
nword[len]='e';
nword[len+1]='s';
nword[len+2]='\0';
printf("the plural of your word is (%s)\n",nword);
free(nword);
}
else printf("ddd");

return 0;
}

最佳答案

'S' 始终评估为 true,这反过来意味着 if(word[len-1]=='s'||'S') 将始终评估为 true,这又意味着永远不会到达以下 else 分支。

你的意思可能是

if(word[len-1]=='s'|| word[len-1]=='S')

关于c - 我写了一个 if/elseif 语句,但它只给出了第一个条件答案,为什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34256288/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com