// This program simulates a simplified version of European Roulette. import java.util.*; public class Roulette { public static void main(String[] args) { Scanner console = new Scanner(System.in); Random rand = new Random(); int bank = 100; int max = bank; int numSpins = 0; // until the player runs out of money or quits // ask for a bet // ask for high or low // spin the wheel // update bank // print stats (spins, ending bank, max bank) } }