字符串的统计

字符串的统计

2、创建一个类Test2完成如下功能:在此程序中从控制台输入一串字符串

  • 并统计字符串中数字个数并输出。
package Text1toText4;
import java.util.Scanner;
public class Test2 {
public static void main(String[] args) {
	Scanner sc = new Scanner(System.in);
	while(true) {
	System.out.println("请输入要统计的字符串:");
	String string = sc.next();
    int number=tongji(string);
    System.out.println("字符串中数字个数:"+number);
    System.out.print("\n");
	}
}
private static int tongji(String string) {
	// TODO Auto-generated method stub
    int Num=0;
    char[]charstr =string.toCharArray();
    for(int i=0;i<charstr.length;i++) {
    	 char chr=charstr[i];
    	 if('0'<=chr &&chr<='9') {
    		 Num++;
    	 }
    }
	return Num;
}
}

你可能感兴趣的:(算法题,字符串)