Question: 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 Lastname; 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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!