gpt4 book ai didi

计算字符串中元音和辅音的个数

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

我不断收到 [Linker error]C:\Users etc 和 collect2: Id 在我的程序中返回 1 个退出状态代码错误,但我没有发现任何问题。这是我的程序:

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

int main (){
int vowels = 0, cnsnts = 0;
int i, length;
char string[100];

printf("Enter sentence:");
gets(string);
length = strlen(string);

for(i = 0; i < length; i++){
switch(toUpper(string[i])){
case 'A':
vowels++;
break;
case 'E':
vowels++;
break;
case 'I':
vowels++;
break;
case 'O':
vowels++;
break;
case 'U':
vowels++;
break;
default:
cnsnts++;
}
}

printf("The number of vowels are %d.\n", vowels);
printf("The number of consonants are %d.\n", cnsnts);

system("pause");
return 0;

}

最佳答案

改变

toUpper(string[i])  

toupper(string[i])  

添加<ctype.h> header 并打开编译器警告。

关于计算字符串中元音和辅音的个数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21322862/

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