double d=(Math.random()*(Math.pow(10, 26)));
System.out.println(d);
d=(Math.random()*(Math.pow(10, 33)));
System.out.println(d);
BigDecimal d1=new BigDecimal(Math.random()*(Math.pow(10, 25)));
System.out.println(d1);
d1=new BigDecimal(Math.random()*(Math.pow(10, 32)));
System.out.println(d1);
位数也太大了吧。。。。