1. 程式人生 > >用程式碼實現輸入i am a student ,輸出 student a am i,不能用類庫函式

用程式碼實現輸入i am a student ,輸出 student a am i,不能用類庫函式

1.輸入i am a student ,輸出student a am i,不能用類庫函式

public static void main(String[]args){

String s1 = "i am a student";

//獲取到擷取後的字串陣列

String[] s2 = s1.split(" ");

System.out.println(s2);

//建立字串緩衝區,儲存新的字串

  StringBuffer sb = new StringBuffer();

for(int i=0;i<s2.length;i++){

sb.append(s2[s2.length-i-1]+" "

);


}
System.out.println(sb);