本帖最后由 isdkz 于 2022-3-11 11:17 编辑 import java.util.Scanner; // 导入 Scanner 类
public class CharCounter{
public static void main(String[] args) {
int digital = 0; // 数字个数
int alphabet = 0; // 字母个数
int other = 0; // 其它字符个数
int blank = 0; // 空格个数
char[] ch = null; // 字符数组,用于存放输入的字符串中的字符
System.out.print("请输入一行字符:" ); // 一个提示
Scanner sc = new Scanner(System.in); // 新建扫描器对象用于获取输入
String s = sc.nextLine(); // 获取输入给字符串对象 s
ch = s.toCharArray(); // 调用字符串对象的 toCharArray 方法转为字符数组
for(int i=0; i<ch.length; i++) { // for 循环来获取字符数组中的字符进行判断
if(ch[i] >= '0' && ch[i] <= '9') {
digital++;
}else if((ch[i] >= 'a' && ch[i] <= 'z') || ch[i] > 'A' && ch[i] <= 'Z') {
alphabet++;
}else if(ch[i] == ' ') {
blank++;
}else {
other++;
}
}
System.out.println("数字个数: " + digital);
System.out.println("英文字母个数: " + alphabet);
System.out.println("空格个数: " + blank);
System.out.println("其他字符个数:" + other );
}
}
|