python算法:Buying a car

本文介绍了一个简单的算法,用于计算从现有旧车升级到目标新车所需的月数及最终盈余,考虑了旧车与新车价值随时间按特定百分比递减的情况,并且每个月能够固定储蓄一定金额。

A man has a rather old car being worth $2000. He saw a secondhand car being worth $8000. He wants to keep his old car until he can buy the secondhand one.

He thinks he can save $1000 each month but the prices of his old car and of the new one decrease of 1.5 percent per month. Furthermore the percent of loss increases by a fixed 0.5 percent at the end of every two months.

解法:

def nbMonths(oc, nc, sm, p):
    m=0
    while oc-nc+sm*m<0:
        m+=1
        q=1-p*0.01-(0.5*0.01*(m//2))
        oc*=q
        nc*=q
    return [m,round(oc-nc+sm*m)]

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值