我的作业中有一个问题,我找不到解决方案..
这个数组声明了 12 个变量。
boolean[] rowOfRotatoes = new boolean[12];
现在我必须一个接一个地分配真假值,
rowOfRotatoes[0] = true;
rowOfRotatoes[1] = false;
rowOfRotatoes[2] = true;
rowOfRotatoes[3] = false;
rowOfRotatoes[4] = true;
....
rowOfRotatoes[9] = true;
rowOfRotatoes[10] = false;
rowOfRotatoes[11] = true;
但我必须使用循环来做到这一点!
他们给了我一个填补空白的结构..
int plantingSpace = 0;
while(plantingSpace < 12) {
rowOfRotatoes[plantingSpace] = <Fill this space 1> <Fill this space 2> <Fill this space 3> == 0;
++plantingSpace;
}
如何使用上述结构依次分配真假值?