99个人围成圈开始数数,遇到3则退出,最后留下来的是谁
摘要:
package TestFor0322;public class Demo2For循环取数 { /** * 99个人围成圈开始数数,遇到3则退出,最后留下来的是谁? */ public static void main(String[] args) { int n=99; loopFetch(n); } private static void loopFetch(int n) { boolean []b=new boolean[n]; int index=0;//循环计数 int le... 阅读全文
posted @ 2013-03-22 17:23 winfwu 阅读(393) 评论(0) 推荐(0) 编辑