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 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

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_2

Step: 3

blur-text-image_3

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

SQL For Data Science Data Cleaning Wrangling And Analytics With Relational Databases

Authors: Antonio Badia

1st Edition

3030575918, 978-3030575915

More Books

Students also viewed these Databases questions

Question

8. Do the organizations fringe benefits reflect diversity?

Answered: 1 week ago