gpt4 book ai didi

java - 数学公式的问题 - Java

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:37:12 26 4
gpt4 key购买 nike

我正在为我的 java 类制作一个程序,该程序计算给定开始年份(2011 年)的一年的人口并每年增加 1.2% 的人口。 2011 年的人口是 7.000(我使用的是小数,而不是十亿)。我目前有这段代码。

int startYear = 2011;
int endYear = user_input.nextInt();
double t = 1.2; //Population percent increase anually
double nbr = (endYear - startYear); //Number of years increased
double pStart = 7.000; //Starting population of 2011
double pEnd = pStart * Math.exp(nbr * t); // Ending population of user input
DecimalFormat nf = new DecimalFormat("2");
System.out.println("Population in " + endYear + ": " (nf.format(pEnd)));

代码中没有错误,一切正常,但我在处理 pEnd 方程时遇到了问题。目前,当我在年底输入 2016 年时,我得到 22824。我试过用谷歌搜索一个公式,但我找不到任何东西。你们中的任何人都知道公式吗?如果以2016为年末,应该在7.433左右

最佳答案

您增加了 1.2 倍,这表示 120% 而不是 1.2%。我想你想要的是:

double t = 0.012;

此更改为我提供了从 2011 年到 2016 年的精确值 7.4328558258175175。

编辑:这是作者要求的代码:

public static void main(String args[]){
int startYear = 2011;
int endYear = 2016;
double t = 0.012; //Population percent increase anually
double nbr = (endYear - startYear); //Number of years increased
double pStart = 7.000; //Starting population of 2011
double pEnd = pStart * Math.exp(nbr * t); // Ending population of user input
System.out.println("Population in " + endYear + ": " + pEnd);
}

关于java - 数学公式的问题 - Java,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39929695/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com