Java - 如何在兴趣之外收取利息

时间:2015-10-23 22:58:17

标签: java

所以我正在为班级写一个发票计算器程序。

但是,我需要每30天编制一次10%的利息

总计*利率(0.10),如果30天

所以,让我们说他们需要支付60天的利息。这么两次

总*利率 - >还有其他兴趣等等

另一个例子: 所以对于该计划,它取决于自上次发票以来的日期。如果是30天,您将被收取10%的利息。如果是60天,您将被收取另外10%的利息。如果是90天,您将被收取另外10%的利息。等等

我是否使用for循环?

str <- 's/p Left IOLI 3/9/04.'
str1 <- c(str, 's/12 45/p s/p Left')

}

谢谢

1 个答案:

答案 0 :(得分:0)

如果你想每30天征收10%的税,你需要这样的东西。

public class test {


public static void main(String[] args) {
    double total = 100.0;
    int numDays = 90;

    //gets how many times your invoice days goes into 30
    int taxNum = numDays / 30;
    //decreases total according to your tax
    for( int i = 0; i < taxNum; i++ ){
        total -= total * .1;
    }
    System.out.println(total);
    }
}