所以我正在为班级写一个发票计算器程序。
但是,我需要每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')
}
谢谢
答案 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);
}
}