Copyright ©  Sudharsan Iyengar
CS  234. Assignment 2  Developing and using Objects Due: 3/23/25
Write a class that represents a basketball team with 5 players. The information about the team is as follows.
Team Name  String Wins  int Losses  int
There should be 5 players in the team.
Write constructor(s), setters, and getters for these fields.
Write a class that represents a basketball player. The information about the player is as follows.
Player Name  String Player Number  int Points Scored  int.
Rebounds  int Blocks - int
Write constructor(s), setters, and getters for this class.
Write an application program that reads a file Team.txt that reads information about the team and information about the players in the team. The first line in the file contains information about the team and is followed by 5 lines  each line contains information about a player. This file will contain information about 3 teams.
The application then develops and presents a menu of team names that will allow the user to pick a team. It will then display the team information and then a menu of player names  to choose a player. It will then display the player information.