标签:逗号 格式化输出 print const int sys ant ons iter
System.out.printf("%,5d %,6.1f\n", 312342, 3155623.932);
输出:312,342 3,155,623.9
System.out.printf("%05d %06.1f\n", 32, 32.32);
输出:00032 0032.3
标签:逗号 格式化输出 print const int sys ant ons iter
原文地址:http://www.cnblogs.com/hyvonF/p/7828334.html