📅  最后修改于: 2023-12-03 14:40:27.141000             🧑  作者: Mango
本篇代码介绍如何编写C程序来计算一个字符串中元音字母(aeiou)和辅音字母的数量。
下面是一个简单的示例代码:
#include <stdio.h>
#include <string.h>
int main() {
char str[100];
int len, vowels = 0, consonants = 0, i;
printf("Enter a string: ");
fgets(str, 100, stdin);
len = strlen(str);
for(i = 0; i < len; i++) {
if(str[i] == 'a' || str[i] == 'e' || str[i] == 'i' || str[i] == 'o' || str[i] == 'u' || str[i] == 'A' || str[i] == 'E' || str[i] == 'I' || str[i] == 'O' || str[i] == 'U') {
vowels++;
} else if((str[i] >= 'a' && str[i] <= 'z') || (str[i] >= 'A' && str[i] <= 'Z')) {
consonants++;
}
}
printf("Number of vowels: %d\n", vowels);
printf("Number of consonants: %d\n", consonants);
return 0;
}
下面是运行示例:
Enter a string: Coding is fun!
Number of vowels: 4
Number of consonants: 8
编写一个C程序来计算字符串中元音和辅音字母的数量是非常简单的。代码中通过for循环遍历字符串中的每个字符,并检查它是否是元音或辅音字母。虽然上面的示例代码相对简单,但是您可以根据需要进行相应的修改以使其更适合您的应用场景。