运行 ❯
获取
您自己的 Java
服务器
×
更改方向
更改主题,深色/浅色
进入空间
public class Main { public static void main(String[] args) { String result = String.format("%3$c %2$c %1$c", 'a', 'b', 'c'); System.out.println(result); } }
c b a