格式输出的问题
我要输出以下内容,i是自己增加的,由传入的参数限制i的大小,如果穿如100,那么 i增加到100 就跳出循环,但是i是这样输出的001,002,,,,,,010,011,,,,100,101
除了用判断,还有什么好的方法解决吗 ,谢谢
------解决方案-------------------- DecimalFormat nf = new DecimalFormat( "000 ");
int x=1;
while(x <=100)
System.out.println(nf.format(x++));
------解决方案--------------------System.out.printf( "%03d%n ", x);
------解决方案--------------------System.out.printf( "%03d%n ", x);
JAVA支持吗???太有才了
------解决方案--------------------天才的想法
------解决方案--------------------这样呀 俺用的是1.4 八好意思哈