將字串中進行反轉。abcde --> edcba
阿新 • • 發佈:2019-01-03
import java.util.Scanner;
public class Test6 {
/**
* 6、將字串中進行反轉。abcde --> edcba
* 分析:
* 字串String 有索引 有最大長度
* 通過for迴圈從最大長度lengrh-1 開始到0為止倒序遍歷
*/
public static void main(String[] args) {
//鍵盤錄入任意字串
Scanner sc = new Scanner(System.in);
System.out.println("請輸入一串字串:" );
String line = sc.nextLine();
//將字串倒序列印
System.out.println("字串反轉後為:");
//迴圈條件int i = line.length()-1;i >= 0;i--
for(int i = line.length()-1;i >= 0;i--){
//字串轉換成字元輸出
System.out.print(line.charAt(i));
}
}
}