每年等额本金,计算复利的方法

最近正在学理财,就顺手写了个复利的计算方法。小记一下 

public class CompoundInterestCalculation {
    public static void main(String[] args) {
        //计算公式V = P(1+i)×[(1+i)^n-1]/i
        //V-终值,P-等额本金,i-收益率,n-期数
        long P = 12000;//每年投入本金12000元,每月1000元;
        float i = 0.2f;//年收益率为20%
        long n = 40;//40年

        long V = CompoundInterest(P,i,n);

        System.out.println("终值为:"+V);

    }
    //计算x的n次方的方法
    public static float SecondPower(float x, long n){
        float res = 1;
        if(x==0){
            res = 0;
        }else if(x>0){
            if(n==0){
                res = x;
            }else if(n>0){
                for (int i=0;i

 

你可能感兴趣的:(java,小技巧)