Java测验 统计字符串中每个“单词”的个数

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner in = new Scanner(System.in);
		String str = in.nextLine();//读入一行到str
		int count = 0;//初始化计数器
		for(int i = 0;i < str.length();i++)
		{
			if(str.charAt(i) != ' ' && str.charAt(i) != '	')//单词间以空格或tab分割
			{
				count++;
			}
			else 
			{
				if(count != 0)//屏蔽连续空格或tab
				{
					System.out.print(count + " ");
					count = 0;//重新初始化
					continue;
				}
			}
		}
		if(count != 0)
		{
			System.out.print(count);//输出最后一个单词的字符个数
		}
	}	
}

你可能感兴趣的:(Java)