java中123456如何排序成654321

2024年11月27日 16:38
有1个网友回答
网友(1):

StringBuffer sb = new StringBuffe("123456");
System.out.println(sb.reverse().toString);