gpt4 book ai didi

c - 使用指针在 C 中查找 char 的索引

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

我在编写一个我被指示编写的程序时遇到了困难。该程序应该搜索出现的第一个元音的单词,然后它应该打印出该元音的索引。如果没有元音字母,则返回 -1。

到目前为止,这是我的代码:

int firstVowel(char* string){
//Variable for case with no vowels
int notInString = -1;
int length = strlen(string);
int i;
for(i = 0; i <= length; i+=1){
if(*string == 'a' || *string == 'e' || *string == 'i' ||
*string == 'o' || *string == 'u'){
return i;
}
else if(*string != 'a' || *string != 'e' || *string != 'i' || *string != 'o' ||
*string != 'u') {
return notInString;
}
}
}

当我使用输入“abced”运行它时,它会正确返回 0。但是,当我以 fsed 运行它时,它会错误地返回 -1。

最佳答案

你的循环不会递增string并且总是在第一次比较后返回,你想要

int firstVowel(char* string) {
//Variable for case with no vowels
int notInString = -1;
int length = strlen(string);
int i;
for (i = 0; i <= length; i += 1) {
if (*string == 'a' || *string == 'e' || *string == 'i' ||
*string == 'o' || *string == 'u') {
return i;
} else {
string++;
}
}

return notInString;
}

这将搜索整个数组,返回它看到的第一个元音的索引。在处理完整个字符串之前,它无法返回 notInString

关于c - 使用指针在 C 中查找 char 的索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50032313/

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