有两种计算税收公式的方法
超出累积顺序,只要应纳税所得额乘以税率即可。
快速计算扣减是一种进度全面的税费计算方法。只要减去此常数,它就等于通过超额累进法计算的应纳税额,因此称为“快速计算扣除”。
简单示例:
月薪4,500元,减2,000,其余2,500应税
使用累积的多余500 * 5%+ 1500 * 10%+ 500 * 15%= 250
使用快速计算扣除2500 * 15%-125 = 175 = 250
在计划执行过程中,首先定义p = 7级,一个应税边界值数组和一个税率数组。较常规的方法是使用ifelse语句逐级考虑应纳税所得额的大小,但这是大量的程序代码,很难理解。该程序使用7级循环来计算段中的传入参数。输入相应级别时,如果相应细分市场超出部分,则将其乘以该细分市场的税率。具体实现如下:
类计算{
私有字符串名称;
私人双钱;
私人双倍实际;
/ **
* @param用户名用户名
* @param税前用户收入
* /
公共帐户(字符串用户名,双钱){
this.name =用户名;
this.money =金钱;
}
公共双份HowMany(){
// Java中switch的case变量仅支持int char字符串,这里为double,因此不能使用switch
double shouru = money; // This.money已经在构造函数中,因此请再次使用它来使用money
如果(shouru <= 1500){
this.actual = shouru;
}否则,如果(1500 this.actual = shouru *(1-0.05); }如果(3000 <= shouru){ this.actual = shouru-(shouru-3000)* 0.1; } 返回this.actual; } } / ** * PersonalFax.java * / 公共类PersonalFax { public static void main(字符串args []){ Caculate shiji = new Caculate(“张三”,1000.2345); double shou = shiji.HowMany(); } }
this.actual = shouru *(1-0.05);
}如果(3000 <= shouru){
this.actual = shouru-(shouru-3000)* 0.1;
返回this.actual;
* PersonalFax.java
公共类PersonalFax {
public static void main(字符串args []){
Caculate shiji = new Caculate(“张三”,1000.2345);
double shou = shiji.HowMany();