I am not sure how to have them play each other once and only once. For example, here is a sample of teams (I will add scoring later, looking for mostly logic help):
class MyTeams {
String teamName;
int wins;
int losses;
}
public class BasketallSeason {
public static void main(String[] args) {
MyTeams aoTeams[] = new MyTeams[9];
aoTeams[0].teamName = "Utah";
aoTeams[1].teamName = "USC";
aoTeams[2].teamName = "Saint Mary's";
aoTeams[3].teamName = "Oregon";
aoTeams[4].teamName = "San Diego";
aoTeams[5].teamName = "San Francisco";
aoTeams[6].teamName = "UCLA";
aoTeams[7].teamName = "Washington";
aoTeams[8].teamName = "Loyola";
}
}