提示:您可在线编辑运行本教程的实例 - 运行实例,去试试!
使用0(零)标志进行打印会填充前导零。
/**来自 N o w J a v a . c o m - 时 代 Java**/ public class Main { public static void main(String[] args) { System.out.printf("%+09d\n", 452); System.out.printf("%09d\n", 452); System.out.printf("% 9d\n", 452); } }