JAVA求10到99的随机数

Random rand = new Random();

int r = rand.nextInt( 90 ) + 10;

原文地址:https://www.cnblogs.com/jayceli/p/2428647.html