Computer Science homework help

Write a program and flowchart.
You work at a Doggie Day care, and you have been asked to tally the weights of the dogs currently in boarding. Your supervisor needs help with the following:

  • Tracking weights of dogs in the following categories
    • Large Breeds
      • Over 70 lbs
    • Medium Breeds
      • Between 25 and 69 lbs
    • Small Breeds
      • Less then 25 lbs
        • ** You can change the weight amounts in each category; but you must include Large, Medium, and Small
  • The average weights in each category
  • The total weights from all categories combined

The program you write should include these components at a minimum. Remember though: Get creative, and feel free to add different components that you feel are applicable in a grading program.

  1. You at least three different arrays – These are, in effect, parallel arrays:
    1. One for Large Dogs
    2. One for Medium Dogs
    3. One for Small Dogs
    4. ** Please note: The example image shown below includes 3 dog arrays
    5. ** You can also add extra categories
      1. Such as Extra Large Size, or Tea Cup Size
  2. Remember to use a “for” loop for each array
  3. You should have Average Weights for each dog category; therefore, you will have a minimum of 3 Average Calculations
    1. Large Dog Weight Average
    2. Medium Dog Weight Average
    3. Small Dog Weight Average
  4. You should have Total Weights that calculates the totals of all dog categories
    1. If you have 3 weight categories, all three should be included
  5. Hints and Suggestions:
    1. You can set your own Dog Weights – for example, see the weights in the example below
    2. You can set how many dogs’ weights for each section
      1. You can also write the program to ask the user for this input, but this is not required
  6. At the end, it prints out the weight totals and averages for each section; and then the total weights across all categories.

Looking for a flowgorithm flow chart for this program to see what im doing wrong in mine..