输入一行字符,分别统计出其中英文字母,空格,数字和其他字符的个数 C语言流程图

谢谢~
2025-04-03 17:30:05
推荐回答(3个)
回答1:

#include
#define whether_char(x)(('A'<=x&&'Z'>=x)||('a'<=x&&'z'>=x))
#define whether_number(x)('0'<=x&&x<='9')
#define whether_space(x)(x==' ')
main()
{
char l;
int nc=0,nn=0,ns=0,nother=0;
printf("Please input a string :");

while((l=getchar())!='\n')
{
if(whether_char(l))
{
nc=nc+1;
continue;
}
if(whether_number(l))
{
nn=nn+1;
continue;
}
if(whether_space(l))
{
ns=ns+1;
continue;
}
else
{
nother=nother+1;
}
}
printf("The number of English characters,spaces,numbers,other characters are:%d,%d,%d,%d.",nc,ns,nn,nother);
}

回答2:

#include "stdio.h"
void main()
{
char s;
int i=0,j=0,k=0,m=0,da=0,xiao=0;
printf("please input the string\n");
while((s=getchar())!='\n') /*循环从键盘读入字符直到一行结束(输入回车)*/
{

if((s='a')||(s'A'))
{
if(s='A')da++;
if(s='a')xiao++;
i++; /*i存入字母数*/
}
else if(s==' ') j++; /*j存入空格数,注意s==' '里面是有一个空格的*/
else if(s47)k++; /*k存入数字数*/
else m++; /*m存入其它符号数*/
}
printf("char:%d Capital letters:%d Lowercase%d\nspec:%d\nnumber:%d\nOther:%d\n",i,da,xiao,j,k,m); /*打印行中的字母,空格,数字,其它字符数*/
}

回答3:

C语言经典例子之统计英文、字母、空格及数字个数