输入一行字符,分别统计出其中英文字母、空格、数字、其它字符的个数!利用 while?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了输入一行字符,分别统计出其中英文字母、空格、数字、其它字符的个数!利用 while?相关的知识,希望对你有一定的参考价值。
#include<stdio.h>
char s[10000];
int main()
int a=0,b=0,c=0,d=0;
gets(s);
int i;
while(s[i]!='\\0')
if(s[i]<='z'&&s[i]>='a'||s[i]>='A'&&s[i]<='Z')
a++;//字母数
else if(s[i]==' ')
b++;//空格数
else if(s[i]>='0'&&s[i]<='9')
c++;//数字数
else
d++;//其他字符
i++;
printf("%d %d %d %d",a,c,b,d);
return 0;
参考技术A 什么语言?不说清楚没法搞啊输入一行字符,分别统计出其中英文字母空格数字和其它字符的个数。
public static void main(String[] args) {
//输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数。
String str="ABab哈哈 123,";
int letter=0;//字母
int space=0;//空格
int number=0;//数字
int other=0;//其他
for (int i = 0; i < str.length(); i++) {
char ch=str.charAt(i);//从字符串中获取字符
if((ch>=‘a‘&&ch<=‘z‘)||(ch>=‘A‘&&ch<=‘Z‘)){
letter++;
}else if(ch==‘ ‘){//空格
space++;
}else if(ch>=‘0‘&&ch<=‘9‘){//数字
number++;
}else {
other++;
}
}
System.out.println("英文字母的个数是:"+letter+",空格的个数是:"
+space+",数字的个数是:"+number+",其他的个数是:"+other);
}
以上是关于输入一行字符,分别统计出其中英文字母、空格、数字、其它字符的个数!利用 while?的主要内容,如果未能解决你的问题,请参考以下文章
代码实现:输入一行字符,分别统计出其中英文字母空格数字和其它字符的个数。
输入一行字符,分别统计出其中英文字母数字空格和其他字符的个数。