帮忙做一道C语言的题目,在线等!急!

写一个函数,使其能统计主调函数通过实参传递来的字符串,对其中的字母,数字,空格分别计数(注意:要求在主函数中输入字符串及输出统计结果)。[参考函数原型:voidcount... 写一个函数,使其能统计主调函数通过实参传递来的字符串,对其中的字母,数字,空格分别计数(注意:要求在主函数中输入字符串及输出统计结果)。[参考函数原型:void count(char*str)]。
这是原题,帮我做一下,我知道这应该不会很难,因为我是C语言的新手,请大家帮帮忙,我也是百度知道的新手,所以分数很少,只有十五分,拜托。
展开
 我来答
wuhouzheng
2009-05-03 · TA获得超过8561个赞
知道小有建树答主
回答量:1010
采纳率:100%
帮助的人:1260万
展开全部
)#include <stdio.h>
int letter; //字母个数
int digit; //数字个数
int space; //空格个数
int others; //其它字母个数
void main()
{
void count(char str[]); //统计个数的函数的声明
char s[81];
printf("请输入一个字符串:");
gets(s);
letter=0; digit=0;
space=0; others=0;
count(s);
printf("字符串中共有 %d 个字母,%d 个数字,%d 个空格,%d个其它字母。\n",letter,digit,space,others);
}
void count(char str[]) //统计个数的函数的定义
{
int i;
char c;
for(i=0; str[i]!='\0';i++)
{
c=str[i];
if(c>='a' && c<='z' || c>='A' && c<='Z')
{ letter++; }
else if(c>='0' && c<='9')
{ digit++; }
else if(c==' ')
{ space++; }
else
{ others++; }
}
}
别动队领导
2009-05-03 · TA获得超过399个赞
知道小有建树答主
回答量:172
采纳率:0%
帮助的人:295万
展开全部
#include <stdio.h>
int a=0,b=0,c=0;
void fun(char *s);
int main(void)
{ char s[100];
printf("Please input\n");
gets(s);
fun(s);
printf("字母:%d 数字:%d 空格:%d\n",a,b,c);
}
void fun(char *s)
{ int i;
for(i=0;s[i]!='\0';i++)
{ if((s[i]<='Z'&&s[i]>='A')||(s[i]<='z'&&s[i]>='a')) a++;
if(s[i]<='9'&&s[i]>='0') b++;
if(s[i]==' ') s++;
}
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
Lazy_sleeping
2009-05-03 · TA获得超过205个赞
知道小有建树答主
回答量:170
采纳率:0%
帮助的人:177万
展开全部
/*********************************************************
**@author: Lazy_sleeping
**@date: 2009-5-3
**@version: v1.0
**********************************************************/

#include <stdio.h>

void count(char* str)
{
int spaceCount = 0;
int letterCount = 0;
int digitCount = 0;
if (NULL == str)
{
printf("the str is null.");
return;
}
while( '\0' != *str)
{
if (' ' == *str)
spaceCount++;
if ((*str >= 'A' && *str <= 'Z') || (*str >= 'a' && *str <= 'z'))
letterCount++;
if ((*str >= '0') && (*str <= '9'))
digitCount++;
str++;
}
printf("spaceCount is %d\n",spaceCount);
printf("letterCount is %d\n",letterCount);
printf("digitCount is %d\n",digitCount);
}

void main()
{
char* testStr = "f2dk3sj6f7 fkhsdfk88";
count(testStr);
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式