我正在编写一个数学应用程序,它将随机生成一个数字。我想将该数字随机分配给四个按钮之一。其他三个按钮也将随机分配一个数字。我想要的是:每当程序运行时,它都会将数字作为文本分配给不同的按钮。
现在我的代码只分配随机数buttonOne
(我不想要)。请帮忙。
private void generateFourNumberForSelection(int firstNumber, int secondNumber)
{
int total = firstNumber + secondNumber;
buttonOne.setText("" + total);
buttonTwo.setText("" + (total + 3));
buttonThree.setText("" + (total - 2));
buttonFour.setText("" + (total + 5));
}