题目
https://pintia.cn/problem-sets/12/problems/308
本题要求实现一个函数,统计给定字符串中英文字母、空格或回车、数字字符和其他字符的个数。
程序样例
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
| #include <stdio.h> #define MAXS 15
void StringCount( char s[] ); void ReadString( char s[] );
int main() { char s[MAXS];
ReadString(s); StringCount(s);
return 0; }
|
关键代码
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
| void StringCount( char s[] ){ int letter=0,blank=0,digit=0,other=0; char c; for(int i=0;s[i]!='\0';i++){ c = s[i]; if(c>='a'&&c<='z'||c>='A'&&c<='Z'){ letter ++; }else if(c==' '||c=='\n'){ blank ++; }else if(c>='0'&&c<='9'){ digit ++; }else{ other ++; } } printf("letter = %d, blank = %d, digit = %d, other = %d",letter,blank,digit,other); }
|