62,628
社区成员
发帖
与我相关
我的任务
分享
package com.c;
public class Main {
public static void main(String[] args) {
String s = "Ace and Fire";
StringBuffer ss =new StringBuffer( s);
System.out.println(ss.reverse());
}
}
String str = "Ace And Fire";
StringBuffer sb = new StringBuffer(str);
System.out.println(sb.reverse());