C语言 统计一串字符中空格键、Tab键、回车键、字母、数字及其他字符的个数(Ctrl+Z终止输入)

//凯鲁嘎吉 - 博客园 http://www.cnblogs.com/kailugaji/

 #include<stdio.h>

 void main(){
int c, letter=, num=, blank=, tab=, enter=, other= ,i=, sum=;
printf("Please input a string:\n");
while((c=getchar())!=EOF){
sum++;
if(c==' '){
++blank; //空格键的个数
}
else if(c=='\t'){
++tab; //Tab键的个数
}
else if(c=='\n'){
++enter; //回车键的个数
}
else if((c>='A' && c<='Z') || (c>='a' && c<='z')){
++letter; //字母的个数
}
else if(c>='' && c<=''){
++num; //数字的个数
}
else ++other; //其他字符的个数
i++;
}
printf("There are %d characters\n", sum);
printf("blank=%d, Tab=%d, Enter=%d, letter=%d, number=%d ,other=%d\n",blank, tab, enter, letter, num, other); }

结果为:

C语言 统计一串字符中空格键、Tab键、回车键、字母、数字及其他字符的个数(Ctrl+Z终止输入)

上一篇:javaBean默认接受request发送过来的数据,根据键自动设置属性


下一篇:win10 下ie11安装flash debuger (install flashplayer debuger on win10 64bit)