public class Test10 {
private static boolean same(int[] p, int l, int n) {
for (int i = 0; i < l; i++) {
if (p[i] == n) {
return true;
}
}
return false;
}
public static void play(int playerNum, int step) {
int[] p = new int[playerNum];
int counter = 1;
while (true) {
if (counter > playerNum * step) {
break;
}
for (int i = 1; i < playerNum + 1; i++) {
while (true) {
if (same(p, playerNum, i) == false)
break;
else
i = i + 1;
}
if (i > playerNum)
break;
if (counter % step == 0) {
if(counter == playerNum * step){
System.out.print("最后剩下的是100人中的第"+i + " 个人");