c语言数组统计字符个数
时间: 2024-03-13 15:38:53 浏览: 119
以下是两种C语言统计字符个数的例子:
1.使用strlen()函数计算字符串长度
```c
#include <stdio.h>
#include <string.h>
int main() {
char a[80];
int count = 0;
gets(a);
count = strlen(a); // 可计算字符串个数
printf("%d", count);
return 0;
}
```
2.使用while循环遍历字符串计算字符个数
```c
#include <stdio.h>
int main() {
char a[80];
int i = 0, count = 0;
gets(a);
while (a[i] != '\0') {
count++;
i++;
}
printf("%d", count);
return 0;
}
```
相关问题
c语言统计字符数组中单词个数
以下是一个C语言统计字符数组中单词个数的例子:
```c
#include <stdio.h>
#include <string.h>
int main() {
char str[] = "Hello Everyone";
int i, word, flag;
word = 0;
flag = 0;
for (i = 0; str[i] != '\0';++) {
if (str[i] ==' ') {
flag = 0;
} else if (flag == 0) {
word++;
flag = 1;
}
}
printf("word=%d\n", word);
}
```
输出结果为:
```
word=2
```
c语言统计数组中单词个数
假设单词之间以空格或者其他非字母字符分隔,可以使用以下代码实现:
```c
#include <stdio.h>
#include <ctype.h>
#define MAX_SIZE 100
int main() {
char str[MAX_SIZE];
int word_count = 0;
int i;
printf("请输入字符串:");
fgets(str, MAX_SIZE, stdin);
for (i = 0; str[i] != '\0'; i++) {
if (isalpha(str[i]) && !isalpha(str[i+1])) {
word_count++;
}
}
printf("单词个数为:%d\n", word_count);
return 0;
}
```
代码解释:
1. 首先定义一个字符数组 `str`,用于存储输入的字符串,同时定义一个常量 `MAX_SIZE`,限制输入字符串的最大长度;
2. 定义一个整型变量 `word_count`,用于统计单词个数,初始化为0;
3. 使用 `fgets` 函数从标准输入中读取字符串,并存储到 `str` 数组中;
4. 使用 `for` 循环遍历 `str` 数组中的每个字符;
5. 如果当前字符是字母,并且下一个字符不是字母,则说明当前字符是一个单词的结尾,将单词计数器 `word_count` 加1;
6. 循环结束后,输出单词个数。
注意:上述代码中使用了 `isalpha` 函数判断字符是否为字母,需要包含头文件 `ctype.h`。此外,如果输入的字符串长度超过了 `MAX_SIZE`,可能会导致程序出错,需要进行额外的处理。
阅读全文