杭电oj —— 2017

import java.util.Scanner;

public class HDU_oj2017 {
	/*
	 * 对于给定的一个字符串,统计其中数字字符出现的次数
	 * InputMisMatchException  输入类型不匹配
	 */
	public static void main(String[] args) {
		Scanner sn = new Scanner(System.in);
		while (sn.hasNext()) {
			int n = sn.nextInt();
			String[] str = new String[n];
		    int[] count  = new int[n];
			for (int i = 0; i < n; i++) {
				//用nextLine就必须后面全都用nextLine,nextLine不要和next  nextInt一起用
				str[i] = sn.next();
				
				for(int j = 0; j

详情Java中判断字符串是否为数字的五种方法

请见:https://www.cnblogs.com/heyuxiu/p/5972187.html

 

你可能感兴趣的:(杭电oj)