Problem C
字符统计
时限:1000ms 内存限制:10000K 总时限:3000ms
描述:
输入一行字符(字符个数不超过255),统计其中的小写字母、空格和其他字符的个数(字符中可能存在空格,请用gets()读入。)
输入:
一行字符串,长度小于255。
输出:
三个数字,每个一行,分别代表小写字母、空格和其他字符的个数。
输入样例:
Xiaolan.Lee 1
输出样例:
8
1 4
#include<stdio.h> #include<string.h> int main() { char s[256]; int x=0,y=0,z=0,i; gets(s); for(i=0;i<strlen(s);i++) { if(s[i]>='a'&&s[i]<='z') x++; else if(s[i]==' ') y++; } z=strlen(s)-x-y; printf("%d\n%d\n%d\n",x,y,z); return 0; }