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


#include



int main()

{
     

char c;

int letters=0,spaces=0,digits=0,others=0;

printf("请输入一些字符:\n"); 

while((c=getchar())!='\n')//表示将从键盘输入的值传给了C // 

{
     

if((c>='a'&&c<='z')||(c>='A'&&c<='Z'))

letters++;

else if(c>='0'&&c<='9')

digits++;

else if(c==' ')

spaces++;

else

others++;

}

printf("字母=%d,数字=%d,空格=%d,其他=%d\n",letters,digits,spaces,others);

return 0;
}

用getchar函数输入一个字符:为了向计算机输入一个字符,可以调用系统函数
库中的getchar函数(字符输入函数)其一般形式为
getchar()

你可能感兴趣的:(笔记,c语言)