我正在使用 j2me 创建一个问答游戏,但我不知道如何随机选择我创建的问题作为显示方法,我需要这方面的帮助。谢谢!
public void commandAction(Command c, Displayable d) {
if(c==proceed){
int n = 0;
Random r = new Random();
while(n<2){
int i = r.nextInt(36);
n++;
}
display.setCurrent(getform23());
}
}
}