COSC 1320 - C++ Programming
Bob Comer, Professor of Computer Studies


Assignment 7 - Monkay Food

In the Gaddis textbook read Chapter 8 sections 8.1-8.9 before starting this assignment.

This assignment is Programming Challenge 4 from Chapter 8 of the textbook. A local zoo wants to keep track of how many pounds of food each of its three monkeys eats each day during a typical week. Write a program that stores this information in a two-dimensional 3 x 7 arrray, where each row represents a different monkey and each column represents a different day of the week. The program should first have the user input the data for each monkey from the keyboard. The number of pounds of food eaten by one monkey in one day should be a floating-point value.

Input Validation: Do not accept negative numbers.

Then your program should create a report that includes the following information:

Your screen dialog might look similar to this (user input is shown in bold):

Enter pounds of food eaten by monkey 1 on Sun: 2.9
Enter pounds of food eaten by monkey 1 on Mon: 3.3
Enter pounds of food eaten by monkey 1 on Tue: 2.1
Enter pounds of food eaten by monkey 1 on Wed: 3.7
Enter pounds of food eaten by monkey 1 on Thu: 2.2
Enter pounds of food eaten by monkey 1 on Fri: 3.5
Enter pounds of food eaten by monkey 1 on Sat: 3.4

Enter pounds of food eaten by monkey 2 on Sun: 4.4
...

Your report might look similar to this:

Pounds of Food Eaten by Monkey and Day of Week

Monkey   Sun   Mon   Tue   Wed   Thu   Fri   Sat
     1   2.9   3.3   2.1   3.7   2.2   3.5   3.4
     2   4.4   4.8   4.1   3.2   5.1   2.9   2.6
     3   1.5   2.1   3.5   2.7   2.0   1.7   2.9

The average food eaten per day by all monkeys     :   9.2 pounds
The least amount of food eaten by any monkey      :   1.5 pounds
The largest amount of food eaten per by any monkey:   5.1 pounds

Modularity Your program must be a modular program. Your main function should not contain any loops. It should call one function to input the food amounts. It should call a separate function to calculate and display each piece of the report (4 more functions).

Additional Requirements:

  1. Do not use global variables in any assignment. A global variable is a variable that is declared outside any function. It is okay to use global constants.


Return to C++ Home Page

Copyright: 2011 by the Austin Community College
Department of Computer Studies. All rights reserved.
Comments to:
Bob Comer
Last updated: March 30, 2011