作业帮 > 综合 > 作业

超简单C语言填空题输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数.程序分析:利用while语句,条件为

来源:学生作业帮 编辑:作业帮 分类:综合作业 时间:2024/07/01 11:31:10
超简单C语言填空题
输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数.
程序分析:利用while语句,条件为输入的字符不为'\n'.
#include "stdio.h"
main()
{char c;
int letters=0,space=0,digit=0,others=0;
printf("please input some characters\n");
while(_________(1)________)
{
if(______________(2)___________)
letters++;
else if(c==' ')
space++;
else if(c>='0'&&c
给,已经运行确认:
#include "stdio.h"
main()
{char c;
int letters=0,space=0,digit=0,others=0;
printf("please input some characters\n");
while(____(1)(c=getchar())!='\n'________)
{
if(____(2)((c>='a')&&(c='A')&&(c='0'&&c