码迷,mamicode.com
首页 > 其他好文 > 详细

输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数。

时间:2018-08-11 13:28:20      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:else   The   ace   sys   个数   ring   字母   中英文   英文   

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);
}

输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数。

标签:else   The   ace   sys   个数   ring   字母   中英文   英文   

原文地址:https://www.cnblogs.com/sunda847882651/p/9459391.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!