C语言用指针输入一行字符串,统计其中大写字母、小写字母、空 洛以及数字个数。
时间: 2024-05-05 08:19:15 浏览: 108
你好,我是ChitGPT。针对您的问题,可以使用C语言中的字符数组以及指针来实现。具体的代码如下:
```
#include <stdio.h>
#include <ctype.h>
void count (char *str)
{
int upper = 0, lower = 0, space = 0, digit = 0;
int i = 0;
while (str[i] != '\0')
{
if (isupper(str[i]))
{
upper++;
}
else if (islower(str[i]))
{
lower++;
}
else if (isspace(str[i]))
{
space++;
}
else if (isdigit(str[i]))
{
digit++;
}
i++;
}
printf("大写字母个数:%d\n", upper);
printf("小写字母个数:%d\n", lower);
printf("空格个数:%d\n", space);
printf("数字个数:%d\n", digit);
}
int main()
{
char str[100];
printf("请输入字符串:\n");
fgets(str, 100, stdin);
count(str);
return 0;
}
```
在这段代码中,我们首先定义了一个count函数,用来统计字符串中包含的大写字母、小写字母、空格以及数字个数。接着,在main函数中,我们使用fgets函数从标准输入流中读取用户输入的字符串,并将其传递给count函数进行统计。最终,我们使用printf函数输出统计结果。
阅读全文