问题

编程题:输入一个长度不大于100的字符串(由字母和空格组成),输出串中包含的单词个数。如不存在单词则输出0.
例如:字符串“hello world”,则输出结果为2。

Java实现

字符串分割

public static void test03(){
Scanner sc = new Scanner(System.in);
String s = sc.nextLine();
if (s.length() > 100) return;
if (s.equals("")) {
System.out.print(0);
return;
}
String[] strings = s.split(" ");
System.out.print(strings.length);
}