gpt4 book ai didi

c - 使用 C 进行反向字符串比较

转载 作者:太空宇宙 更新时间:2023-11-04 05:52:25 24 4
gpt4 key购买 nike

<分区>

我刚刚编译了这个程序,但它似乎不起作用。

我应该做的是编写一个程序来确定一个单词是否为回文(前后相同的单词,例如“racecar”或“eye”)。

它还应该忽略大小写字母(例如 Racecar 或 eYe)。这是我目前所拥有的:

int main()

char word[21],reverse[21];
printf("Type a word and I will tell you if it is a Palindrome: ");
fgets(word,21,stdin);
puts("");
printf("The word that you typed is: %s \n",word);
strcpy(reverse,word);
strrev(reverse);
if((strcmp(reverse,word))==0)
printf("This word is a palindrome");
else
printf("This word is NOT a palindrome");

return 0;
}

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