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

int main()
{
	int alpha = 0;//英文字符
	int blank = 0;//空格
	int digit = 0;//数字
	int other = 0;//其它
	int ch;
	while ((ch = getchar()) != '\n')//,从键盘获取一行字符,非常重要
	{
		//if('a'<=ch&&ch<='z' || 'A'<=ch&&ch<='Z')//英文字符,前提:字母连续
		if (isalpha(ch))
			alpha++;
		else if (ch == ' ')
			blank++;
		//else if('0'<=ch &&ch<='9')//可以使用
		else if (isdigit(ch))
			digit++;
		else
			other++;
	}
	printf("%d,%d,%d,%d\n", alpha, blank, digit, other);
	return 0;
}

你可能感兴趣的:(数学建模,c语言)