c语言 输入一个字符串,输出a的个数
时间: 2023-05-12 09:03:57 浏览: 140
课堂练习-c语言课件精讲二
您好,以下是C语言的代码,可以输入一个字符串,输出其中a的个数:
```c
#include <stdio.h>
#include <string.h>
int main() {
char str[100];
int len, i, count = 0;
printf("请输入一个字符串:");
scanf("%s", str);
len = strlen(str);
for (i = 0; i < len; i++) {
if (str[i] == 'a' || str[i] == 'A') {
count++;
}
}
printf("字符串中a的个数为:%d\n", count);
return 0;
}
```
希望能够帮到您!
阅读全文