java 中怎么产生一个25为或32为的随机数

2024-11-22 22:05:18
推荐回答(2个)
回答1:

Math.random() 把0和1替换成25和32

回答2:

int s=(int)(Math.random()*2)==0?25:32;