c语言中怎样统计字符串中包含英文字母 ,空格,数字的个数啊?急求……怎样写这个程序啊??

日期:2013-06-25 13:37:37 人气:1

c语言中怎样统计字符串中包含英文字母 ,空格,数字的个数啊?急求……怎样写这个程序啊??

#include #include int main() { int i,ch=0,sp=0,num=0,other=0; char str[50]; gets(str); for(i=0;i<strlen(str);i++){ if(str[i]>='0'&&str[i]<='9'){ num++; }else if(str[i]>='
    A+
热门评论