赞
踩
Random.nextInt(26)会随机产生0-26的一个值,加上偏移量'a',就可以产生小写字母.
Random rand = new Random(47);int c=rand.nextInt(26)+'a';printnb((char)c);