黑马程序员技术交流社区
标题:
第七个程序题
[打印本页]
作者:
菜鸟哥
时间:
2015-7-28 23:54
标题:
第七个程序题
题目:输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数。
import java.util.*;
public class lianxi07 {
public static void main(String[] args) {
int digital = 0;
int character = 0;
int other = 0;
int blank = 0;
char[] ch = null;
Scanner sc = new Scanner(System.in);
String s = sc.nextLine();
ch = s.toCharArray();
for(int i=0; i<ch.length; i++) {
if(ch >= '0' && ch <= '9') {
digital ++;
} else if((ch >= 'a' && ch <= 'z') || ch > 'A' && ch <= 'Z') {
character ++;
} else if(ch == ' ') {
blank ++;
} else {
other ++;
}
}
System.out.println("数字个数: " + digital);
System.out.println("英文字母个数: " + character);
System.out.println("空格个数: " + blank);
System.out.println("其他字符个数:" + other );
}
}
作者:
BugKing
时间:
2015-7-29 11:08
这位兄台,看你主题好多,咋技术分那么少啊
作者:
360638403
时间:
2015-7-29 14:49
那个判断字母那里.可以使用正则,这样代码可以短一点
[a-zA-Z]
[0-9]
作者:
陈鹏No1
时间:
2015-7-29 15:23
这是读文件里面的,然后变成字符串,再统计的吗?
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2