我在下面有这段代码,用于控制要从数组中显示的问题。我对第三行代码有问题,我不完全确定问题是什么。
rnd1, rnd2 都是双倍的。Eclipse 告诉我 rnd2 应该是一个 int。但是我被告知,为了使天花板功能起作用,rnd 应该是双倍的。问题是一个文本字段。问题是数组。
rnd1 = Math.ceil(Math.random()*3);
rnd2 = Math.ceil(Math.random()*questions.length)-1;
ques.setText(questions[rnd2]);
我将此基于我用于测验应用程序的动作脚本。它用于从问题数组中随机挑选出问题。
rnd1=Math.ceil(Math.random()*3);
rnd2=Math.ceil(Math.random()*questions.length)-1;
q.text=questions[rnd2];
if(questions[rnd2]=="x")
{
change_question();
}
questions[rnd2]="x";
enable_disable(1);