假如我国国民生产总值的年增长率为9%, 计算10年后我国国民生产总值与现在 相比增长多少百分比。编写程序。
时间: 2024-10-27 15:11:39 浏览: 60
行业数据-20年印度国内生产总值增长率预测.rar
这是一个简单的程序,它会让用户输入当前的国民生产总值(GDP)和年增长率,然后通过复利公式计算十年后的增长比例。以下是使用 Python 编写的程序示例:
```python
# 定义计算未来GDP的函数
def calculate_growth(initial_gdp, annual_growth):
return initial_gdp * (1 + annual_growth)**10
# 用户输入
current_gdp = float(input("请输入当前的国民生产总值(GDP): "))
annual_growth_rate = 0.09 # 固定9%的年增长率
# 计算十年后的GDP增长
future_gdp = calculate_growth(current_gdp, annual_growth_rate)
growth_percentage = (future_gdp / current_gdp - 1) * 100
# 输出结果
print(f"经过10年的年增长率9%,我国国民生产总值将增长 {growth_percentage:.2f}%.")
```
在这个程序中,我们使用了 `(1+growth_rate)^years` 的公式来计算未来的GDP。
阅读全文