编写一个函数,由实参传来一个字符串,统计此字符串中字母,数字,空格和其他字符的个数。

2016-06-17 23:29:53  分类: c程序设计第四版谭浩强课后答案  参与:

 编写一个函数,由实参传来一个字符串,统计此字符串中字母,数字,空格和其他字符的个数。在主函数中输入字符串以及输出上述结果。

【c源程序】
#include <stdio.h>
int letter,digit,space,others;
int main()
{void count(char []);
 char text[80];
 printf("input string:\n");
 gets(text);
 printf("string:");
 puts(text);
 letter=0;
 digit=0;
 space=0;
 others=0;
 count(text);
 printf("\nletter:%d\ndigit:%d\nspace:%d\nothers:%d\n",letter,digit,space,others);
 return 0;
}

 void count(char str[])
{int i;
 for (i=0;str[i]!='\0';i++)
 if ((str[i]>='a'&& str[i]<='z')||(str[i]>='A' && str[i]<='Z'))
    letter++;
 else if (str[i]>='0' && str [i]<='9')
    digit++;
 else if (str[i]==32)
    space++;
 else
    others++;
}

 

来源:c程序设计第四版谭浩强课后答案

本文链接:http://www.wb98.com/c/post/tanhaoqiang_7.9.html

本站文章搜索:

<< 上一篇下一篇 >>

搜索

网站分类

Tags列表

赞助商链接