C 练习实例17

题目:输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数。

程序分析:利用while语句,条件为输入的字符不为'\n'。

代码示例

#include 
int main()
{
	char c;
	int letters=0,dijits=0,spaces=0,others=0;
	printf("请输入字符串:\n");
	while(scanf("%c",&c)){
		if(c=='\n')
			break;
		if((c>='a'&&c<='z')||(c>='A'&&c<='Z'))
			letters++;
		else if(c>='0'&&c<='9')
			dijits++;
		else if(c==' ')
			spaces++;
		else
			others++;
	}
 	printf("字母=%d,数字=%d,空格=%d,其他=%d\n",letters,dijits,spaces,others);
 	return 0;
}

输出样例

请输入字符串:
123456       abcdEFGH好好学习,天天向上
字母=8,数字=6,空格=7,其他=18

--------------------------------
Process exited after 45.63 seconds with return value 0
请按任意键继续. . .

你可能感兴趣的:(c语言经典100题,c语言)