怎么样可以用Random产生的10以内的数以01,02.。。的形式输出啊。请给个代码
import java.util.concurrent.ThreadLocalRandom;
System.out.printf("%02d%n", ThreadLocalRandom.current().nextInt(0,100));
Java 7下运行。
import java.util.concurrent.ThreadLocalRandom;
System.out.printf("%02d%n", ThreadLocalRandom.current().nextInt(0,100));