输入一行字符,分别统计出其中英文,空格,数字和其他字符的个数
程序员文章站
2022-05-06 15:04:26
...
int c = 0, space = 0, num = 0, other = 0; char s[] = djwiJFIW 123@#$!%; // scanf(%s, s); char *str = s; while (*str != \0) { if ((*str = A *str = Z) || (*str = a *str = z)) { c++; }else if (*str == ){ space++; }else if (*str = 0 *str = 9){
int c = 0, space = 0, num = 0, other = 0;
char s[] = "djwiJFIW 123@#$!%";
// scanf("%s", s);
char *str = s;
while (*str != '\0') {
if ((*str >= 'A' && *str = 'a' && *str
c++;
}else if (*str == ' '){
space++;
}else if (*str >= '0' && *str
num++;
}else{
other++;
}
str++;
printf("%c ", *str);
}
printf("英文,空格,数字和其他字符的个数分别为: %d,%d,%d,%d\n", c, space, num, other);
上一篇: 怎么学习cakePHP框架
下一篇: HTML5 可以做微信类产品吗?
推荐阅读
-
python练习题(十二):输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数
-
C语言 统计一串字符中空格键、Tab键、回车键、字母、数字及其他字符的个数(Ctrl+Z终止输入)
-
JavaSE_输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数
-
题目:输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数。
-
C语言输入一行字符,分别统计出其中英文字母、数字、空格和其他字符的个数。
-
1. 编写函数 cal_numbers:参数为字符串,统计并返回该字符串中的英文字母、空格、数字和其它字符的个数
-
输入一行字符,分别统计出其中英文,空格,数字和其他字符的个数
-
C语言 统计一串字符中空格键、Tab键、回车键、字母、数字及其他字符的个数(Ctrl+Z终止输入)
-
JavaSE_输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数
-
题目:输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数。