Advertisement
Guest User

Untitled

a guest
May 26th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
BOO 0.23 KB | None | 0 0
  1. where PayElementValue("Base salary") in range
  2.   0..10000: TaxFactor = 0;
  3.   10001..50000: TaxFactor = 0.2;
  4.   50001..100000: TaxFactor = 0.3;
  5.   100001..infinite: TaxFactor = 0.4;
  6. }
  7.  
  8. result = PayElementValue("Base salary") * TaxFactor;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement