: Your program is going to compare the scores of two volleyball teams that play each other. To win a match in volleyball a team must get 25 points. But they must also win by 2. So even if a team reaches 25 that game continues until one team is ahead by 2 points. Let’s assume that these two teams are going to play 5 matches.
Your program should accept from the user the scores for each team one match at a time. If at any time that user enters scores that violate the 25 point rule or the “win by 2” point rule, print an error on the screen and make the user enter both scores again.
When the user is finished entering the scores, the program should print which team won the game. This is the team that won the most matches.
You have to use arrays and loops in this assignment.
You can do a File | Export | Export to Zip and it will create a ZIP file of the application. Export the application this way to turn in during the first week of class.
Sample Output: In italic is what the user entered.
Spoiler
Sample Output 1
Welcome to the volleyball score program.
Enter the number of points Team 1 got in Match 1
10
Enter the number of points Team 2 got in Match 1
25
Enter the number of points Team 1 got in Match 2
1
Enter the number of points Team 2 got in Match 2
25
Enter the number of points Team 1 got in Match 3
23
Enter the number of points Team 2 got in Match 3
25
Enter the number of points Team 1 got in Match 4
10
Enter the number of points Team 2 got in Match 4
25
Enter the number of points Team 1 got in Match 5
0
Enter the number of points Team 2 got in Match 5
25
Team 2 has won the game.
Sample Output 2
Welcome to the volleyball score program.
Enter the number of points Team 1 got in Match 1
10
Enter the number of points Team 2 got in Match 1
24
That can’t be. One team must get at least 25 points. Please reenter the data.
Enter the number of points Team 1 got in Match 1
10
Enter the number of points Team 2 got in Match 1
25
Enter the number of points Team 1 got in Match 2
1
Enter the number of points Team 2 got in Match 2
25
Enter the number of points Team 1 got in Match 3
23
Enter the number of points Team 2 got in Match 3
25
Enter the number of points Team 1 got in Match 4
10
Enter the number of points Team 2 got in Match 4
25
Enter the number of points Team 1 got in Match 5
24
Enter the number of points Team 2 got in Match 5
25
That can’t be. One team must win by 2 points. Please reenter the data.
Enter the number of points Team 1 got in Match 5
24
Enter the number of points Team 2 got in Match 5
26
Team 2 has won the game


    • 9 years ago
    java
    NOT RATED

    Purchase the answer to view it

    blurred-text
    • attachment
      kgfile22.doc