In Exercises 19 through 26, write a program for the stated example or exercise from Section 7.3 without using a structure.
In Exercises 23 through 26 use the file Baseball.txt that contains data about the performance of major league baseball players during the 2012 regular season. Each record of the file contains four fields—name, team, atBats, and hits. Some lines of the file are as follows:
Baseball Write a program that requests a team as input and displays the players from that team. The players should be sorted alphabetically by their last names. Players having the same last name should be ordered secondarily by their first names. (Note: The Split method can be used to extract first and last names from a person’s full name. For instance, the value of "Babe Ruth".Split(" "c).Last is Ruth.) The output should display each player’s full name and batting average. See Fig. 7.43.
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.