钱,钱,钱

描述:

张先生有P元钱存入银行,想获得DP元钱,需要存几年?假设利率为I,税率为T。

例如:

P = 1000.00
I = 0.05
T = 0.18
DP = 1100.00

第一年 –>P = 1041.00

第二年 –>P = 1083.86

第三年 –>P= 1128.30

存入1000元,想获得1100元,张先生需要存三年时间。

MyCode:

using System;

public class Kata
{
  public static int CalculateYears(double principal, double interest,  double tax, double desiredPrincipal)
        {
          int years = 0;
          while(principal < desiredPrincipal)
          {
            principal += principal * interest * (1 - tax);
            years++;
          }
          return years;
        }
}

CodeWar:

using System;

public class Kata
{
    public static int CalculateYears(double p, double i,  double t, double dp)
    {
        return (int) Math.Ceiling(Math.Log(dp/p, 1+(i*(1-t))));
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值