Skip to content

Instantly share code, notes, and snippets.

View hunterruth's full-sized avatar

Hunter Ruth hunterruth

View GitHub Profile
@hunterruth
hunterruth / RouletteGame.java
Created August 19, 2012 17:56
Roulette Game
import java.util.Random;
import java.util.Scanner;
public class RouletteGame
{
public static void main(String[] args)
{
Scanner keyboard = new Scanner(System.in);
Random generator = new Random();