溫馨提示×

java怎么將字符串按單詞逆序輸出

小億
122
2023-10-16 18:04:07
欄目: 編程語言

要將字符串按單詞逆序輸出,可以按照以下步驟進行:

  1. 使用split()函數(shù)將字符串拆分成單詞數(shù)組。

  2. 創(chuàng)建一個新的字符串?dāng)?shù)組,長度與單詞數(shù)組相同。

  3. 使用循環(huán)將單詞數(shù)組中的單詞逆序復(fù)制到新的字符串?dāng)?shù)組中。

  4. 使用循環(huán)輸出新的字符串?dāng)?shù)組中的單詞。

以下是一個示例代碼:

public class Main {
public static void main(String[] args) {
String str = "Hello World";
String[] words = str.split("\\s+");
String[] reversedWords = new String[words.length];
for (int i = 0; i < words.length; i++) {
reversedWords[i] = words[words.length - 1 - i];
}
for (String word : reversedWords) {
System.out.print(word + " ");
}
}
}

輸出結(jié)果為:

World Hello

0