要将字符串按单词逆序输出,可以按照以下步骤进行:
1. 使用split()
函数将字符串拆分成单词数组。
2. 创建一个新的字符串数组,长度与单词数组相同。
3. 使用循环将单词数组中的单词逆序复制到新的字符串数组中。
4. 使用循环输出新的字符串数组中的单词。
以下是一个示例代码:java
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 + " ");
}
}
}
输出结果为:
World Hello