0

我对编程很陌生,所以请原谅我可能愚蠢的问题。我已经构建了三个函数,它们根据相同的输入“金额”计算税率。我试图找出一种方法,让用户输入一次金额并从所有三个函数中获得回报。他们在下面。

//Function 1
var normalrtfCalculator = function (amount) {
  if (amount <= 150000) {
    return Math.ceil(amount / 500) * 2;
  } else if (amount <= 350000) {
    if ((amount - 150000) <= 50000) {
      return 600 + (Math.ceil((amount - 150000) / 500) * 3.35);
    } else {
      return 935 + (Math.ceil((amount - 200000) / 500) * 3.9);
    }
  } else {
    if ((amount - 200000) <= 350000) {
      return 2735 + (Math.ceil((amount - 200000) / 500) * 4.8);
    } else if ((amount - 550000) <= 300000) {
      return 4655 + (Math.ceil((amount - 555000) / 500) * 5.3);
    } else if ((amount - 850000) <= 150000) {
      return 7835 + (Math.ceil((amount - 850000) / 500) * 5.8);
    } else {
      return 9575 + (Math.ceil((amount - 1000000) / 500) * 6.05);
    }
  }
};
//Function 2
var mansionTax = function (amount) {
  if (amount > 1000000) {
    return amount * 0.01;
  }
};
//Function 3
var lowincomertfCalculator = function (amount) {
  if (amount <= 350000) {
    if (amount <= 150000) {
      return (Math.ceil(amount / 500)) * 0.5;
    } else {
      return 150 + (Math.ceil((amount - 150000) / 500)) * 1.25;
    }
  } else {
    if ((amount - 150000) <= 400000) {
      return 420 + (Math.ceil((amount - 150000) / 500) * 2.15);
    } else if ((amount - 550000) <= 300000) {
      return 2140 + (Math.ceil((amount - 550000) / 500) * 2.65);
    } else if ((amount - 850000) <= 150000) {
      return 3730 + (Math.ceil((amount - 850000) / 500) * 3.15);
    } else {
      return 4675 + (Math.ceil((amount - 1000000) / 500) * 3.4);
    }
  }
};
4

2 回答 2

1

只需有一个运行其他函数并返回结果对象的函数:

var calculateTax = function(amount){
  return {
    rtf : normalrtfCalculator(amount),
    mansion: mansionTax(amnount),
    lowincome: lowincomertfCalculator(amount)
  }
}

那么你可以这样称呼它:

var tax = calculateTax(99999);

要获得单独的结果,您只需访问属性:

alert(tax.rtf),alert(tax.mansion)alert(tax.lowincome)

于 2013-02-26T02:52:32.210 回答
0

所需的最小更改可能只是() 在分配给变量之前添加。

就像是 :

 var amount = 100;

 //Function 2
 var mansionTax = (function () {
     if (amount > 1000000) {
         return amount * 0.01;
     }
 })();

这是一个工作示例

这将消除定义任何附加功能的需要。

于 2013-02-26T02:55:12.313 回答