cpython3


私信TA

用户名:smartZhou

访问量:80475

签 名:

等  级
排  名 35
经  验 14015
参赛次数 1
文章发表 99
年  龄 0
在职情况 学生
学  校
专  业 计算机科学与技术

  自我简介:

TA的其他文章

解题思路:
#include <type.h>

isalpha()是否是字母;

isdigit()是否是数字

注意事项:

参考代码:

#include <stdio.h>
#include <ctype.h>

int main()
{
	int c;
	int alpha=0,space=0,digit=0,other=0;
	while((c=getchar())!='\n')
	{
		if(isalpha(c))
			alpha++;
		else if(isdigit(c))
			digit++;
		else if(c==' ')
			space++;
		else
			other++;
	}
	printf("%d\n%d\n%d\n%d\n",alpha,space,digit,other);
	return 0;
}



 

0.0分

0 人评分

  评论区

  • «
  • »