Hi, I need help creating a card game. In the card game there are two revealed cards and a hidden third card. In this game, the player has an amount of 200 dollars and needs to make a bet. He also needs to call a number from 0 to 2;
'0' means that the third card < the lowest of the first two cards, '1', means that the third card is between the two cards, and '2' means that the third card is greater than the two cards. I need to keep the amount that the player has updated after every round. I keep on receiving errors such as cannot return a value from method whose result type is void and
Here is what I got so far:
public class cardGame
{
public static void main (String []args)
{
String ret;
GUI theTable = new GUI(3);
Deck tooManyCards = new Deck();
tooManyCards.shuffleDeck();
theTable.showAmount(200);
double theAmount = theTable.showAmount(playerOneBet);
Card theOne = tooManyCards.dealCard();
Card theTwo = tooManyCards.dealCard();
theTable.showCard(theOne);
theTable.showCard(theTwo);
String A = JOptionPane.showInputDialog("Enter A Digit from 0 through 2;0 is less than, 1 is between, 2 is greater than");
int B = Integer.parseInt(A);
String C = JOptionPane.showInputDialog("Place your bet player 1");
double playerOneBet = Double.parseDouble(C);
theTable.showBet(playerOneBet);
Card DeckCard = tooManyCards.dealCard();
theTable.showCard(DeckCard);
if(DeckCard.betweenCards(theOne, theTwo))
{
theAmount = theAmount + playerOneBet;
ret = "You have won" + playerOneBet . + " dollars!! You now have" + theAmount;
}
else
{
theAmount = theAmount - playerOneBet;
ret = "You have lost" + playerOneBet + "dollars!! You . know have" + theAmount;
}
return ret;

