-
Notifications
You must be signed in to change notification settings - Fork 0
/
Practice37.java
46 lines (42 loc) · 1.05 KB
/
Practice37.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
package fiftypratice;
import java.util.Scanner;
/**
* 题目:有n个人围成一圈,顺序排号。从第一个人开始报数(从1到3报数),
* 凡报到3的人退出圈子,问最后留下的是原来第几号的那位。
* */
public class Practice37 {
public static void main(String[] args) {
System.out.println("请输入人数n:");
Scanner s=new Scanner(System.in);
int n=s.nextInt();
boolean []a=new boolean[n];
for(int i=0;i<a.length;i++){
a[i]=true;
}
int t=n;
int index=0;
int count=0;
while(t>1){
if(a[index]==true){
count++;
if(count==3){
count=0;
a[index]=false;
t--;
}
}
index++;
if(index==n){
index=0;
}
}
for(int i=0; i<n; i++) {
if(a[i] == true) {
System.out.println("原排在第"+(i+1)+"位的人留下了。");
}
}
if(s!=null){
s.close();
}
}
}