package com.toy;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class test {
/**
* @param args
*/
public static void main(String[] args) {
// Scanner scanner = new Scanner(System.in);
BufferedReader buf = new BufferedReader (new InputStreamReader(System.in));
String string = null;
try {
string = buf.readLine();//需要捕捉异常
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
System.out.println(string.length());
int digit = 0; //记录数字的个数
int character = 0;//记录字母的个数
int space = 0;//记录空格的个数
int other = 0;//记录其他字符的个数
for(int i = 0; i < string.length(); ++i) { //做循环检查
char ch = string.charAt(i);
if( ch> '0' && ch < '9') {
digit ++;
} else if(ch >'a' && ch <'z' || ch >'A' && ch <'Z') { //此处字母包括大写和小写,当然也可以统计大写跟小写的具体数目
character ++;
} else if (ch == ' ') {
space ++;
} else {
other ++;
}
}
System.out.println("数字总数:" + digit + "个,字母总数:" + character + "个,空格总数:" + space + "个,其他字符总数:" + other + "个。");
}
}
其中输入也可以用这两句代码(需要导入import java.util.Scanner;它是SDK1.5新增的一个类):
Scanner scanner = new Scanner(System.in);
String string = scanner.nextLine();//读取一行字符