日期:2014-05-20  浏览次数:20754 次

为什么我的while(left > 1) 一直报错??
本帖最后由 yangkaiyun 于 2012-10-27 17:13:50 编辑
  public static void main(String[] args) {
  boolean[] a = new boolean[10];
  for(int i = 0;i < a.length;i++) {
  a[i] = true;
  }
  }
 
  int left = a.length;
  int counts = 0;
  int index = 0;
 
  while(left > 1) {
  if(a[index] == true) {
  counts++;
  if(counts == 3) {
  counts = 0;
  a[index] = false;
  left--;
  }
  }
 
  index++;
 
  if(index == a.length) {
  index = 0;
  }
  }
……
------最佳解决方案--------------------
你的括号,不对称哟~少了好几对。

public class Derf {
  public static void main(String[] args) {
   boolean[] a = new boolean[10];
   for(int i = 0;i < a.length;i++) {
   a[i] = true;
   }
  int left = a.length;
  int counts = 0;
  int index = 0;
  while(left > 1) {
   if(a[index] == true) {
   counts++;
   if(counts == 3) {
   counts = 0;
   a[index] = false;
   counts--;
   }
   }
 
   index++;
 
   if(index == a.length) {
   index = 0;
   }
  }
  }
}

------其他解决方案--------------------
public class Derf
{
public static void main(String[] args)
{
boolean[] a = new boolean[10];
for (int i = 0; i < a.length; i++)
{
a[i] = true;
}

int left = a.length;
int counts = 0;
int index = 0;

while (left > 1)
{
if (a[index] == true)
{
counts++;
if (counts == 3)
{
counts = 0;
a[index] = false;
left--;
}
}

index++;

if (index == a.length)
{
index = 0;
}
}
}
}
这样看看
------其他解决方案--------------------
重点不是括号!是while报错,我那是程序的大部分。。。
------其他解决方案--------------------
这个过程没有问题,似乎你想改index=3,6,9的值,也许是你的逻辑错误了,并无语法问题。
不知道你在一个循环里反复改变a[3,6,9]的值是什么意思。或许你想这样写:
while(--left>2){
  if(left%3==0)a[left]=false;
}
------其他解决方案--------------------

public class TestLeft {

  public static void main(String[] args) {
  boolean[] a = new boolean[10];
  
  for(int i = 0;i < a.length;i++) {