题源 👉 句子逆序_牛客题霸_牛客网 (nowcoder.com)
题目描述:
思路:
方法一:
借助 split 方法将输入句子按 空格 分割为字符串数组,从末端开始输出字符串数组,且没输出一个词加一个空格。
具体实现:
方法一:
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
String[] str = sc.nextLine().split(" ");
for(int i = str.length - 1; i >= 0; i--){
System.out.print(str[i] + " ");
}
}
}
时间复杂度:
O(n)