Complete the following program skeleton so it will have a 10-element array of int values called fish. When completed, the program should ask how many fish were caught by fishermen 1 through 10, and store this information in the array. Then it should display the data.
#include
using namespace std;
int main ()
{
const int NUM_MEN = 10;
// Define an array named fish that can hold 10 int values.
// You must finish this program so it works as
// described above.
return 0;
}
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.