Question: 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
DNRFishTrackerjava public class DNRFishTracker initialize variables private int totalFish1 private int totalFish2 private int totalFish3 private int lake1Fish1 private int lake1Fish2 private int lake1... View full answer
Get step-by-step solutions from verified subject matter experts
