c语言,输入一个字符串统计字符串中大写辅音字母个数并输出
时间: 2023-08-28 20:08:05 浏览: 177
使用汇编语言,输入字符串,统计其总字符数、字母数、数字数、其他数并输出
下面是一个简单的 C 代码实现,可以实现输入一个字符串并统计其中大写辅音字母的个数并输出:
```c
#include <stdio.h>
#include <string.h>
#include <ctype.h>
int main() {
char str[100];
int count = 0;
printf("请输入一个字符串:");
fgets(str, sizeof(str), stdin);
for (int i = 0; i < strlen(str); i++) {
if (isupper(str[i]) && strchr("AEIOU", str[i]) == NULL) {
count++;
}
}
printf("大写辅音字母的个数为:%d\n", count);
return 0;
}
```
代码中使用 fgets 函数从标准输入读取一个字符串,然后使用 for 循环遍历字符串中的每一个字符,如果该字符是大写字母并且不是元音字母,则将计数器 count 加一。最后输出计数器的值即为大写辅音字母的个数。
阅读全文