用C语言函数fun完成的是对一个给定的字符串,统计其中数字、大小写字母及其他符号的个数的功能,在主程序中输入字符串并调用函数fun,接收并输出返回的结果。
时间: 2024-03-20 08:39:47 浏览: 91
好的,我可以帮你解答这个问题。
可以使用以下代码实现:
```c
#include <stdio.h>
#include <ctype.h>
void fun(char *str, int *num, int *upper, int *lower, int *other)
{
while (*str != '\0')
{
if (isdigit(*str))
{
(*num)++;
}
else if (isupper(*str))
{
(*upper)++;
}
else if (islower(*str))
{
(*lower)++;
}
else
{
(*other)++;
}
str++;
}
}
int main()
{
char str[100];
int num = 0, upper = 0, lower = 0, other = 0;
printf("请输入一个字符串:");
fgets(str, 100, stdin);
fun(str, &num, &upper, &lower, &other);
printf("数字的个数:%d\n", num);
printf("大写字母的个数:%d\n", upper);
printf("小写字母的个数:%d\n", lower);
printf("其他字符的个数:%d\n", other);
return 0;
}
```
其中,函数 `fun` 的参数为一个字符串指针和四个整型指针,分别表示数字、大写字母、小写字母和其他字符的个数。在函数中,使用 `isdigit`、`isupper` 和 `islower` 函数判断字符的类型,然后分别累加到对应的指针变量中。
在主程序中,先使用 `fgets` 函数获取用户输入的字符串,然后调用 `fun` 函数进行统计。最后输出各个类型字符的个数即可。
希望能够帮到你!
阅读全文