C语言例题——统计字符串中各种字符

统计字符串中各种字符的个数,如何用C语言实现呢,转自C语言网

题目:

输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数。
1.程序分析:
利用while语句,条件为输入的字符不为’\n’.


2.程序源代码:
#include "stdio.h"
#include "windows.h"
main()
{
char c;
int letters=0,space=0,digit=0,others=0;
system("title C语言研究中心 www.dotcpp.com");
printf("please input some characters\n");
while((c=getchar())!='\n')
{
if(c>='a'&&c<='z'||c>='A'&&c<='Z')
letters++;
else if(c==' ')
space++;
else if(c>='0'&&c<='9')
digit++;
else
others++;
}
printf("all in all:char=%d space=%d digit=%d others=%d\n",letters,
space,digit,others);

}

更多的例题来自C语言网训练场

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章