Answered step by step
Verified Expert Solution
Link Copied!

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

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Databases And Information Systems 1 International Baltic Conference Dbandis 2020 Tallinn Estonia June 19 2020 Proceedings

Authors: Tarmo Robal ,Hele-Mai Haav ,Jaan Penjam ,Raimundas Matulevicius

1st Edition

303057671X, 978-3030576714

Students also viewed these Databases questions

Question

Define the term "Leasing"

Answered: 1 week ago

Question

What do you mean by Dividend ?

Answered: 1 week ago

Question

What is database?

Answered: 1 week ago

Question

What are Mergers ?

Answered: 1 week ago