Scientific Calculator

(public) loew/Steuer

By loew Joachim Löw

Calculation of German Tax for Taxable amount greater EUR 13.470

Tagged: tax

var Steuer=function(x){
if (x>=13470 and x<=52881) ->
   Steuer = (228.74 * ((x-13469)/10000) + 2397) * ((x-13469)/10000) + 971 
else
  if (x>=52881 and x<=250730) ->
      Steuer = 0.42 * x - 8239 
   else 
      if x>250730 -> 
          Steuer = 0.45 * x - 15761
}
 

spam? | offensive?

1 Comment

Sign in to leave a comment