Computing these probabilities for all players exactly requires quite some effort. So most probably, you will find approximated odds more useful.
That said, in case you can invest the time and effort, here's a rundown of the general idea on how to compute exact winning percentages:
Let N be the total number of cards in the deck and P the number of players. Let M be the remaining cards, i.e. M = N-2*P
loop over all possible flops+turn+river cards that may come up (select 5 out of the M remaining cards). Let T be the total number of these possible board situations.
- for each board of 5 such cards, determine who wins this hand (i.e. the two hole cards of each player plus the 5 board cards). If player P wins this hand, increase W(P) by one, where W(P) is the number of hands this player wins.
Finally, for a player P you can get his pre-flop winning percentage as W(P) / T. In words: the number of board situation in which this player wins the hand, divided by the number of all possible board situations.
This process can be adapted easily for calculating the post-flop and post-river percentages. For those cases, simply adjust the loop for the number of remaining cards.