Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Create a java program. Lake Finder: You have been hired to develop software for the DNR to track species of fish in the local lakes.
Create a java program.
Lake Finder:
You have been hired to develop software for the DNR to track species of fish in the local lakes. By the final deadline you are to complete a prototype that does the following:
DNR fish tracker:
- Set up your program so it already has a list of three (3) types of fish they wish to track.
- Set up the program with three (3) lakes.
Code: Use at least two classes (the driver class must include a main method)
Input: for each of the three lakes (you pick the lake names):
- For each lake, the user enters how many of each type of fish were found.
Output - for each lake:
- Output the number of each type of fish
- Output the fish that has the highest population
- Output the fish that has the lowest population
Output -for all lakes:
- Combine all data to output the total number of each type of fish
- Combine all data and output which fish has the highest population.
- Combine all data and output which fish has the lowest population.
Output: must be in chart format:
- Each column must be neatly spaced.
- Each column must have a heading.
Additional requirements:
- Program must be explained at start
- loop or exit on a character (accept both upper and lower case)
- Follow best practice throughout.
- Create two or more class files.
- Code must have meaningful comments throughout.
Step by Step Solution
★★★★★
3.30 Rating (144 Votes )
There are 3 Steps involved in it
Step: 1
DNRFishTrackerjava public class DNRFishTracker initialize variables private int totalFish1 private int totalFish2 private int totalFish3 private int lake1Fish1 private int lake1Fish2 private int lake1...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