Java经典编程题50道之三十七
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java经典编程题50道之三十七相关的知识,希望对你有一定的参考价值。
有n个人围成一圈,顺序排号。从第一个人开始报数(从1到3报数),凡报到3的人退出圈子,问最后留下的是原来第几号的那位。
public class Example37 {
public static void main(String[] args) {
f(1000);
}
public static void f(int n) {
boolean[] arr = new boolean[n];
for (int i = 0; i < arr.length; i++) {
arr[i] = true;
}
int leftCount = n;
int countNum = 0;
int index = 0;
while (leftCount > 1) {
if (arr[index] == true) {
countNum++;
if (countNum == 3) {
countNum = 0;
arr[index] = false;
leftCount--;
}
}
index++;
if (index == n) {
index = 0;
}
}
for (int i = 0; i < n; i++) {
if (arr[i] == true) {
System.out.println("原排在第" + (i + 1) + "位的人留下了。");
}
}
}
}
以上是关于Java经典编程题50道之三十七的主要内容,如果未能解决你的问题,请参考以下文章