Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Java Create a hockey team of players, using Prospect.java. Each player has a lastname, a position, and a number. Ask the user to enter the
Java
Create a hockey team of players, using Prospect.java. Each player has a lastname, a position, and a number. Ask the user to enter the info for each player. Ensure the number is between 1 and 99. Ensure the position is one of F, D, or G (these represent forward, defence, and goalie). Also ensure that there are no more than 6 defencemen. The lastname can be anything. Have the user enter 'Done' to stop inputting players.
After reading in all the players, print each player out. Print the forwards first, then the defence, then the goalies.
public class Prospect { String surname; char position; int number; public Player(String s, char p, int n) { Lastname = l; position = p; number = n; } public void setLastname(String s){lastname = l;} public void setPosition(char p){position = p;} public void setNumber(int n){number = n;} public String getLastname(){return surname;} public char getPosition(){return position;} public int getNumber(){return number;} public String toString() { return lastname + ", Number " + number + ", Position: " + position; } }
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started