int [] people = new int[17];
int lastPeople = 0;
public void getTheLastPeople()
{ 
for(int i = 0; i < people.length; i++)
{
people[i] = i+1;
}
int count = 0;
int countLast = 0;
int j = 0;
while(true)
{
for(j = 0; j < people.length; j++)
{ 
if(people[j] != 0)
{
count++;
people[j] = count;
System.out.println("people[" + j + "] = " + people[j]);
if (people[j] % 3 == 0)
{
people[j] = 0;
countLast++;
if(countLast == 17)
{
lastPeople = j;
return;
}
}
}
}
}
}
643

被折叠的 条评论
为什么被折叠?



