编写程序输入存款本金2000年利率5.6年数五计算复利保留两位小数本金利率和为262.33用python
时间: 2023-04-06 11:01:45 浏览: 224
C#——编写程序输入年利率k(例如2.52%),存款总额total(例如100000元),计算一年后的本息并输出。.doc
5星 · 资源好评率100%
以下是用 Python 编写的计算复利的程序:
principal = 2000 # 存款本金
rate = 0.056 # 年利率
years = 5 # 存款年数
# 计算复利
compound_interest = principal * (1 + rate) ** years - principal
# 保留两位小数
compound_interest = round(compound_interest, 2)
# 计算本金和利率
total = principal + compound_interest
rate_and_principal = round(total - principal, 2)
# 输出结果
print("复利为:", compound_interest)
print("本金和利率之和为:", rate_and_principal)
阅读全文