标签: math random numbers
我想用Math.random()只创建数字2和4。 我怎么能这样做?
Math.random()
感谢您的支持
答案 0 :(得分:1)
int twoOrFour = Math.random() < 0.5 ? 2 : 4;
答案 1 :(得分:0)
'?'并且':'被称为三元运算符。它们是if - else的替代品。以前的代码应该使用if-else
if (Math.random ()<0.5)twoOrFour=2; else twoOrFour=4;