运行 ❯
获取您
自己的 Java
服务器
×
更改方向
更改主题,深色/浅色
进入空间
public class Main { public static void main(String[] args) { String myStr = "Hello %s! One kilobyte is %,d bytes."; String result = String.format(myStr, "World", 1024); System.out.println(result); } }
你好,世界!一千字节等于 1024 字节。