|
2 |
edited tags
|
||
|
1 |
|
||
Rounding issues with allocating dollar amounts across multiple peopleWhat is the best way to solve this problem in code? The problem is that I have 2 dollar amounts (known as a pot), that need to be allocated to 3 people. Each person gets a specific amount that comes from both pots and the rates must be be approximately the same. I keep coming across rounding issues where my allocations either add up to too much or too little. Here is a specific example: Pot #1 987,654.32 Person #1 gets Allocation Amount: 345,678.89 My logic is as follows (Code is in c#):
The results I get are as follows: Pot #1, Person #1 = 307,270.13 Pot #2, Person #1 = 38,408.76 The Pot Totals should match the original totals. I think I may be missing something or there may be an extra step that I need to take. I think I am on the right track. Any help would be greatly appreciated.
|
||||
