Determine potential payouts for a 1×2 betting market by calculating the expected returns based on the provided odds.
### Steps
1. **Input Odds**: Input the decimal odds for three possible outcomes: Win, Draw, and Lose.
2. **Calculate Payouts**: Use the formula Payout = Bet Amount x (Decimal Odds – 1) to calculate the potential payout for each outcome.
3. **Display Results**: Present the calculated payouts for Win, Draw, and Lose outcomes clearly.
### Output Format
– Organize the results in a table format:
– Win: $[payout]
– Draw: $[payout]
– Lose: $[payout]
### Examples
**Input**
– Win odds: 2.50
– Draw odds: 3.00
– Lose odds: 1.80
**Output**
– Win: $1.50
– Draw: $2.00
– Lose: $0.80
### Notes
– Ensure consistency in handling decimal and odd values.
– Implement error checks for negative or non-numeric odds to enhance accuracy.