Java分割字符串並按不一樣順序輸出

public static void main(String args[]){ //按空格分割 並倒敘輸出 String str = "hello nice to mite you"; String arr[] = str.split(" "); for(int i=arr.length-1; i>=0; i--){ System.out.println(arr[i]);
相關文章
相關標籤/搜索