解题思路: 先递归出每一个子字符串(一个),在进入正则表达式中进行判断
注意事项: Scanner类中 next()方法和nextLine()方法的一个区别是next不读取空格,nextLine读取空格,我就是因为这点出错
参考代码:
public static void main(String[] args) { Scanner sc = new Scanner(System.in); int arr[] = {0,0,0,0}; String str = sc.nextLine();//可以读取空格 statistics(str,arr,0); for (int i = 0; i < arr.length; i++) { if (i<arr.length-1) { System.out.print(arr[i]+" "); }else { System.out.print(arr[i]); } } } //递归 public static void statistics(String str,int arr[],int index) { if (index==str.length()) { //出口 return ; } judge(str.charAt(index),arr); //判断每一个字符串 statistics(str,arr,++index); //开始递归 } public static void judge(char s,int arr[]) { String str = String.valueOf(s); //判断字母 String letter = "^[a-zA-Z]{1}"; if (str.matches(letter)) { arr[0]++; } //判断数字 String number = "^[0-9]{1}"; if (str.matches(number)) { arr[1]++; } //判断空格 String space = "\\s{1}"; if (str.matches(space)) { arr[2]++; } //判断其他的字符 String other = "^[^a-zA-Z0-9\\s]{1}"; if (str.matches(other)) { arr[3]++; } }
0.0分
1 人评分
C语言程序设计教程(第三版)课后习题6.1 (C语言代码)浏览:545 |
A+B for Input-Output Practice (C++代码)浏览:632 |
C语言程序设计教程(第三版)课后习题10.7 (C语言代码)浏览:998 |
剪刀石头布 (C语言代码)不知道怎么直接在scanf中用枚举变量浏览:1436 |
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)浏览:606 |
WU-拆分位数 (C++代码)浏览:819 |
1011题解浏览:819 |
字符逆序 (C语言代码)浏览:506 |
C二级辅导-进制转换 (C语言代码)浏览:750 |
2005年春浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:636 |