(C語言)統計輸入的字符串的長度、字母個數、數字個數、其他個數。

例如輸入:KOBE24&VC++ 輸出:長度 11字母 6數字 2其他 3 #include<stdio.h> #include<string.h> #define N 50 void Total(char str[N],int b[]) { int i; for(i=0;str[i]!=’\0’;i++) { if(str[i]>=‘0’&&str[i]<=‘9’)//數字 { b[0]++;
相關文章
相關標籤/搜索