小朋友數數位遊戲 java實現演算法

來源:互聯網
上載者:User
package second;import java.util.ArrayList;public class second {/** * 小朋友數數位遊戲 多個小朋友圍成一圈,依次數數字,當數到指定數字是就退出,繼續下一個從1開始數,如此迴圈 return 求出最後一個留下的小朋友 *  * @param args */public static void main(String[] args) {// TODO Auto-generated method stub// 指定的數字int num = 4;// 指定數目的小朋友int person[] = { 1, 2, 3, 4, 5 };// 從第幾個小朋友開始數int beginperson = 1;//需要刪除的數組下標int count=beginperson-1;ArrayList<Integer> ai = new ArrayList<Integer>();for (int i = 0; i < person.length; i++) {ai.add(person[i]);}int numperson = CounGameMethod(num, ai, beginperson,count);System.out.println("第" + numperson + "留了下來");}private static int CounGameMethod(int num, ArrayList<Integer> person, int beginperson,int count) {if (person.size() != 1) {if(beginperson==num){System.out.println("第"+person.remove(count)+"個小朋友被淘汰");if(count==person.size()){count=0;}beginperson=1;}else{beginperson++;if(count<person.size()-1){count++;}else{count=0;}}return CounGameMethod(num, person, beginperson, count);} else {return person.get(0);}}}
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.