This program will keep track of win-tied-loss and points earned records for team

    This program will keep track of win-tied-loss and points earned records for team. There are 6 teams and each week there are three games (one game per team per week) Enter the team numbers and game scores in an array within the program rather than user typing at command prompt.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. For example:
    How many weeks of data: 3
    For week 1 game 1 enter the two teams and the score: 0 1 1 4
    For week 1 game 2 enter the two teams and the score: 2 3 1 2
    For week 1 game 3 enter the two teams and the score: 4 5 2 0
    For week 2 game 1 enter the two teams and the score: 0 2 3 0
    For week 2 game 2 enter the two teams and the score: 1 4 0 1
    For week 2 game 3 enter the two teams and the score: 3 5 4 4
    For week 3 game 1 enter the two teams and the score: 0 4 8 7
    For week 3 game 2 enter the two teams and the score: 1 5 0 0
    For week 3 game 3 enter the two teams and the score: 2 3 6 9
    League Standing after 3 weeks:
    W T L
    Team 0 2 0 1
    Team 1 1 1 1
    Team 2 0 0 3
    Team 3 2 1 0
    Team 4 2 0 1
    Team 5 0 2 1
    Points Table:
    Team 3 5
    Team 0 4
    Team 4 4
    Team 1 3
    Team 5 2
    Team 2 0Modify to add the winning percentage for each team.
    Modify to compute and print for each team the total points scored for and against.

                                                                                                                                      Order Now