Help me

I have to write a program that stores information in a two-dimensional 3 × 7 array, 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.

Then it should create a report that includes the following information:

Average amount of food eaten per day by the whole family of monkey.
The least amount of food eaten during the week by any one monkey.
The greatest amount of food eaten during the week by any one monkey.
Input Validation: Do not accept negative numbers for pounds of food eaten.

Would anyone be kind enough as to help me at least get started? Thanks.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include <iostream>
using namespace std;

// Constant declarations
const int MONKEY_ROWS = 3;
const int DAYS_OF_THE_WEEK_COLS = 7;


int main()
{
	
	

    cout << "Please press ENTER to end program."; 
    cin.sync();
    getchar();
    return 0;
} 
Topic archived. No new replies allowed.