我在将随机数保持在一定范围内时遇到问题。我已经尝试了一些不同的建议,但到目前为止它们都没有。这是我尝试过的最新版本。使用此代码生成0到30之间的数字。但我想保持在50-20之内。
建议?
void randomNumbersForEquation() {
Random randomNumbers = new Random();
int number1 = randomNumbers.nextInt(51 - 20);
int number2 = randomNumbers.nextInt(51 - 20);
textEasyNumber1.setText("" + number1);
textEasyNumber2.setText("" + number2);
}