B*Q 发帖数: 25729 | 1 首先,取消一切deduction,最多保留一些按人头的exemption
第二,对所有收入,一视同仁
最后,按以下公式
min is the tax free income
maxr is the maximum rate
public class SocialismTax {
public static double computeTax(
double income, double min,
double maxr, double a, double b) {
if (income <= min) return 0;
double x = income - min;
double r = a + b * x;
if (r > maxr) r = maxr;
return r * x;
}
@Override
public String toString() {
System.out.println("社会主义万岁");
}
} | B*Q 发帖数: 25729 | 2 哦,对了
a > 0
b > 0
谁整出个 b <= 0
谁就是资本家的乏走狗 | r*******g 发帖数: 1335 | |
|