1. 程式人生 > >字串的逆序輸出

字串的逆序輸出

package com.ccf;

import java.util.*;
public class FanZhuan {

	public static void main(String[] args) {
		
		Scanner sc = new Scanner(System.in);
		String str = sc.nextLine();
		
		//方法一,字串轉化成StringBuffer之後使用reverse()
		StringBuffer strr = new StringBuffer(str);
		System.out.println(strr.reverse());
		
		//方法二,字串逆序輸出
		for(int i=str.length()-1;i>=0;i--)
			System.out.print(str.charAt(i));
		
	}

}