Question
-Create a Java program. -Create a simple program for a game that consist of an arbitrary number of players. Each player has a unique numerical
-Create a Java program.
-Create a simple program for a game that consist of an arbitrary number of players. Each player has a unique numerical id and gets assigned a random value between 0 and 1, the player with the highest value wins.
*Player Class
-Design a Java class named Player that contains:
-A private int data field named id corresponding to the player number (default 0).
-A private double data field named val that stores a random value (default 0).
-A constructor that assigns initial values to id and val.
-Two get methods that return the stored values for id and val.
*Winner Class
-Design a Java class named Winner that contains:
-The main Java method.
-A method called init_game where an array of players gets instantiated. The number of players needs to be specified as text input by using the Scanner class. The method instantiates, i.e. constructs, all players with their id number and a random value between 0 and 1. The player array with all their ids and values needs to be printed.
-A method called find_winner where random values assigned to each player are compared and the player with the largest value gets printed as the winner. Printout should include the player id and value corresponding to the winner.
*Game Package
-Both classes should be stored inside a package named game.
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