用Java代码实现类似Excel单变量求解的功能(Case study-Facebook User Base Growth )

如题,运算结果和Excel中模拟计算-单变量求解功能的计算结果基本一致。
问题是,计算精度和Excel的结果在百分位不一致(应该属于计算精度的问题,因为不知道Excel的实现方法,不清楚具体原因)

代码如下:
//JHTP Exercise 5.33: Facebook User Base Growth
//by pandenghuang@163.com
/**(Facebook User Base Growth) According to CNNMoney.com, Facebook hit one billion users
in October 2012. Using the compound-growth technique you learned in Fig. 5.6 and assuming
its user base grows at a rate of 4% per month, how many months will it take for Facebook to grow
its user base to 1.5 billion users? How many months will it take for Facebook to grow its user base
to two billion users?*/

public class Facebook {
	public static void main(String[] args){
		double growth_rate=0.04;
		double growth_rateDay=0.001333; // ~=0.04/30
		double base=1000000000;
		double target1=1500000000;
		double target2=2000000000;
		double users=0.0;
		int duration1=0;
		int duration2=0;
		int flagMonth=0;
		int durationDay1=0;
		int durationDay2=0;
		int flagDay=0;
		
		for(int i=1;i<=100;i++){
			users=base*Math.pow(1+growth_rate,i);
			if (users-target1>=0 && flagMonth==0){
				duration1=i;
				flagMonth=1;}
			
			if(users-target2>=0){
				duration2=i;
				break;
			}	

		}
		
		for(int i=1;i<=1000;i++){
			users=base*Math.pow(1+growth_rateDay,i);
			if (users-target1>=0 && flagDay==0){
				durationDay1=i;
				flagDay=1;}
			
			if(users-target2>=0){
				durationDay2=i;
				break;
			}	

		}
		
		System.out.println("2012年10月Facebook用户量达到了10亿,在此基础上,以月增长4%来预测,");
		System.out.printf("再过%d个月(以2012年10月为基准),Facebook用户量将超过15亿;再过%d个月,Facebook用户量将超过20亿",duration1,duration2);
		
		System.out.println("\n\n2012年10月Facebook用户量达到了10亿,在此基础上,以月增长4%(日增长约0.1333%)来预测,");
		System.out.printf("再过%.2f个月(以2012年10月为基准),Facebook用户量将超过15亿;再过%.2f个月,Facebook用户量将超过20亿",durationDay1/30.0,durationDay2/30.0);

		
	}
}

运算结果:
2012年10月Facebook用户量达到了10亿,在此基础上,以月增长4%来预测,
再过11个月(以2012年10月为基准),Facebook用户量将超过15亿;再过18个月,Facebook用户量将超过20亿

2012年10月Facebook用户量达到了10亿,在此基础上,以月增长4%(日增长约0.1333%)来预测,
再过10.17个月(以2012年10月为基准),Facebook用户量将超过15亿;再过17.37个月,Facebook用户量将超过20亿

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值