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

问题描述:

超简单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
1个回答 分类:综合 2014-10-27

问题解答:

我来补答
给,已经运行确认:
#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
 
 
展开全文阅读
剩余:2000
也许感兴趣的知识