package com.java1234.chap03.sec08;
public class zifufanzhuan {
public static void main(String[] args) {
String str="abcdefgh"
;
String newstr=""
;
StringBuffer sb=
new StringBuffer(str);
newstr=
sb.reverse().toString();
System.out.println(newstr);
}
}
转载于:https://www.cnblogs.com/zhanghongqiang/p/4342558.html
转载请注明原文地址: https://win8.8miu.com/read-1481212.html