i won't beat around the bush and will say that this is an assignment and i'm not that experienced in writing programs. all semester my teacher has had us "trace" programs as of which he would give us c programs and our jobs have been to give the output. i've posted a few of these on here and with your help i've had a long but not so painful experience learning a lot and have actually been able to do quite well in class. so thanks for that. now it's kind of tough to actually write a program with just doing some tracing but i'm going to give it a go anyway and hopefully can get kick started with the help of you guys.

this program has to keep track of 6 teams playing one another for 10 weeks. so 30 games total. After reading in each week, the program should print out the win-tied-loss records and points earned for each team. A win is two points, tied game is one point and a loss is zero points. Then modify my game standings project to predict a future game. After all the statistics have been printed, the
program should prompt the user for two teams. The computer will predict the winner by choosing the team that has the best record.


So i'm just guessing by what ive learned that a 2 d array is in order? one for the team numbers and one for the game scores. and a function with something as the following? and int win lose or draw?
team[i]score[]>team[i]score[])
++win
++point
team[i]score[]<team[i]score[])
++lose

just trying to do some planning before i dig into some old programs to figure out what im doing