import java.util.Random;
public class Test16 {
public static void main(String[] args) {
System.out.println(getRandomNumber(7));
}
/**
* 得到n位长度的随机数
* @param n 随机数的长度
* @return 返回 n位的随机整数
*/
public static int getRandomNumber(int n){
int temp = 0;
int min = (int) Math.pow(10, n-1);
int max = (int) Math.pow(10, n);
Random rand = new Random();