Ugh... I just think its a simple 1-2 line that I need.. Your above statement is too much. Lots of println's i dont need. The code is as it needs to be, with the one exception that at this section of code :
Code
case "double":
if (userCash < 2.00){
System.out.println("You do not have enough money. Choose a cheaper bet!");
input.next();
} else{
There has to be some way to take user's input and translate it into the switch that enables the cases.
/e The part input.next(); I just have a feeling its something very simple.
as far as using if/else statements goes.. I did the entire thing originally with if / else and it was a nightmare.. switch with cases makes the code cleaner and easier to manage.
This post was edited by Malexir on Feb 23 2013 12:04am