Skip to content

Instantly share code, notes, and snippets.

@mattcunningham
mattcunningham / 5.13.java
Created February 14, 2017 18:37
5.13 Program: Soccer team roster (Java)
import java.util.Scanner;
public class PlayerRoster {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
int[][] players = new int[5][2];
boolean keepAlive = true;
char input;
for (int i = 0; i < 5; i++) {