标签:mamicode 编程 als space inpu sharp 计算 private title
你既然已经做出了选择,又何必去问为什么选择?
背景:Java 在线编程机试刷题。
计算字符串最后一个单词的长度,单词以空格隔开。
一行字符串,非空,长度小于5000。
整数N,最后一个单词的长度。
hello word
5
Java代码:
1 import java.util.Scanner;
2 public class Main{
3
4 private static void countLastWordLength(String str){
5 if(!str.isEmpty()){
6 String [] split = str.split(" ");
7 String lastWord = split[split.length - 1];
8 int length = lastWord.length();
9 System.out.print(length);
10 }
11 }
12
13 public static void main(String [] args){
14 Scanner scan = new Scanner(System.in);
15 while(scan.hasNext()){
16 String input = scan.nextLine();
17 countLastWordLength(input);
18 }
19 }
20
21 }
输出验证:
你既然已经做出了选择
又何必去问为什么选择
标签:mamicode 编程 als space inpu sharp 计算 private title
原文地址:https://www.cnblogs.com/taojietaoge/p/13618896.html