Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Objective: Write a program which replicates the final game of a famous price related game show. In this version, a Showcase contains exactly 5
Objective: Write a program which replicates the final game of a famous price related game show. In this version, a "Showcase" contains exactly 5 unique randomly selected prizes. The user must guess the sum of the prizes within $2,000 below or equal to the sum in order to win. Requirements: Functionality. (80pts) o No Syntax, Major Run-Time, or Major Logic Errors. (80pts*) *Code that cannot be compiled due to syntax errors is nonfunctional code and will receive no points for this entire section. *Code that cannot be executed or tested due to major run-time or logic errors is nonfunctional code and will receive no points for this entire section. o Use only Arrays. (80pts*) *Other built in types like ArrayLists, LinkedLists, etc will receive no points for this entire section. o Clear and Easy-To-Use Interface. (10pts) Users should easily understand what the program does and how to use it. Users should be prompted for input and should be able to enter data easily. Users should be presented with output after major functions, operations, or calculations. Users should be able to perform any number of the required functions. In addition, users should be able to choose when to terminate the program. All the above must apply for full credit. o Reading a Prize File. (20pts) The program must read from a "Prize File" and using that information it must populate a data structure of prizes. Each prize in the file has a name and price separated by and end line ( ). Each prize's name and price are separated by a tab ('\t') The "Prize File" format is: < > < > The program should ignore items that do not strictly follow the previously stated format. (HINT! There's at least one item in the file that is not formatted correctly) Example Prize File You may either assume the "Prize File" is constant or you may ask the user to enter a prize filename. All the above must apply for full credit. o Select Prize's for the Showcase. (20pts) The program should randomly pick exactly 5 unique prizes from the prize data structure. No prize should ever repeat in this selection. All the above must apply for full credit. o Determine if the user won or lost. (20pts) The user must be presented with the prizes' names before they make a guess, and it must clearly prompt the user for a guess. The user should be able to enter their guess. The program then must determine if the user's guess was less than or equal the sum of the prizes and greater than or equal the sum of the prizes minus $1,000. If both are true, then the program must inform the user they won! Otherwise the program must inform the user they lost. For Example, if sum of the prizes is $5,000 then the user wins if their guess is between $4,000 and $5,000 inclusively, otherwise they lose. All the above must apply for full credit. o Run-Time and Logic Error Checking. (10pts) Each major function must check for common run-time and logic errors. Coding Style. (10pts) o Code functionality organized within multiple methods other than the main method, and methods organized within multiple classes where appropriate. (5pts) o Readable Code (5pts) Meaningful identifiers for data and methods. Proper indentation that clearly identifies statements within the body of a class, a method, a branching statement, a loop statement, etc. All the above must apply for full credit. Comments. (10pts) o Your name in the file. (5pts) o At least 5 meaningful comments in addition to your name. These must describe the function of the code it is near. (5pts) 20000 50000 Car Boat Moose 1000 Goat 200 Shredded wheat 2 Cheese 5 Milk 5 Bread 7 Big TV 1000 Life time supply of Cheetos Lamp 20 Blender 30 Food Processor 40 Camera 400 750 Watch Beard Supplies 800 Trip to Latvia 4000 Ski Equipment 1200 Pair of Scooters A basket of turtles Fiber Supplement Handful of hard candy Large Ball of Foil Heap of Makeup 100 A Pet Crow 50 A Trunk Full of Shoes Trip to New Zealand Robosaurus 100000 Espresso Making Ferrets 1200 Antacid 5 2000 20 6 2 5 Tennis Equipment Cereal 4 The Antidote Ping Pong Table 400 500 5000 A box of slightly used magazines Pinball Machine 1500 Jar of Tomato Paste Aspirin 8 Unreasonable amount of luncheon meat 1400 1600 250000 Dinette Set Bedroom Set Washer and Dryer Microwave 30 Latest Video Game Console Globe that lights up! 400 A sparkly necklace 800 500 A Large Cowboy Hat 200 Dollars in Cash Bag of 100 Tacos 5 1500 A Very Very Pretty Ring 1200 Guitar 1500 Banjo 120 Exotic Plants 500 2000 100 200 200 500 1 200
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Heres an example of how you can implement the program in Java to satisfy the requirements specified ...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