会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
sp2012
博客园
首页
新随笔
联系
订阅
管理
软件大赛题目----(第九个)求牛的数目
package com.bird.software; import java.util.ArrayList; import java.util.List; public class Cow { private int age; public Cow afterYears(){ age++; return age > 2 ? new Cow() : null; } public static void showTotalCowNum(int n){ List<Cow> list = new ArrayList<Cow>(); list.add(new Cow()); for(int i = 0; i < n; i++){ int cowCount = list.size(); for(int j = 0; j < cowCount; j++){ Cow cow = list.get(j).afterYears(); if(cow != null){ ++cowCount; list.add(cow); } } } System.out.println(n+"年后,共有:"+list.size()+"头牛"); } public static void main(String[] args){ showTotalCowNum(5); } }
posted on
2012-01-29 19:16
sp2012
阅读(
162
) 评论(
0
)
编辑
收藏
举报
刷新页面
返回顶部