解题思路:
注意事项:
参考代码:
import java.util.*; import java.math.*; public class Main { public static void main(String[] args){ Scanner sc=new Scanner(System.in); int n=sc.nextInt(); ArrayList list=new ArrayList(); for(int i=1;i<=n;i++){ list.add(i); } int count=1; int index=0; while(list.size()!=1){ if(index==list.size()){ index=0; } if(count%3==0){ list.remove(index); index--; } count++; index++; } System.out.println(list.get(0)); } }
0.0分
2 人评分
简单的a+b (C语言代码)浏览:690 |
简单的a+b (C++语言代码)浏览:895 |
1017题解浏览:663 |
C二级辅导-同因查找 (C语言代码)浏览:618 |
淘淘的名单 (C语言代码)浏览:1309 |
简单的a+b (C语言代码)浏览:600 |
简单的a+b (C语言代码)浏览:443 |
C语言程序设计教程(第三版)课后习题5.4 (C语言代码)浏览:596 |
C语言训练-求素数问题 (C语言代码)浏览:630 |
校门外的树 (C语言代码)浏览:634 |