Skip to content

Instantly share code, notes, and snippets.

View jdetle's full-sized avatar

John Detlefs jdetle

View GitHub Profile
@jdetle
jdetle / RunGame.java
Created March 2, 2015 05:14
This is a tic tac toe game
package tictactoe;
import java.util.Scanner;
public class RunGame {
public static int ReadPlayer1or2(Scanner scanner){
System.out.print( "Greetings, human, would you like to be player one or two? \n");
String input = scanner.nextLine();