C# Form The Toledo Zoo wants to understand how much food (in pounds) each of its 4 elephants eats each day during a norm
Posted: Wed Apr 27, 2022 4:59 pm
C# Form
The Toledo Zoo wants to understand how much food (in pounds)
each of its 4 elephants eats each day during a normal week. The 4
elephants are named: (1)Rascal, (2)Petey, (3)Clyde and (4)Darla.
Write a program that stores this information in a two-dimensional 4
× 7 array, where each row represents a different elephant (the
first row represents Rascal, the second row represents Petey etc),
and each column represents a different day of the week. The program
should first have the user input the data for each elephant. Then,
it should create a report that includes the following
information:
Use a form to enter the elephants name and the food for 7
days. Each time they click a button, it will add the
food information to a corresponding row of the 2-dem array
(depending on which elephant it is). Once they have entered all 4
elephants, it should not allow the user to enter data for an
elephant already entered and it should show the output after the
4th elephant is entered.
The Toledo Zoo wants to understand how much food (in pounds)
each of its 4 elephants eats each day during a normal week. The 4
elephants are named: (1)Rascal, (2)Petey, (3)Clyde and (4)Darla.
Write a program that stores this information in a two-dimensional 4
× 7 array, where each row represents a different elephant (the
first row represents Rascal, the second row represents Petey etc),
and each column represents a different day of the week. The program
should first have the user input the data for each elephant. Then,
it should create a report that includes the following
information:
Use a form to enter the elephants name and the food for 7
days. Each time they click a button, it will add the
food information to a corresponding row of the 2-dem array
(depending on which elephant it is). Once they have entered all 4
elephants, it should not allow the user to enter data for an
elephant already entered and it should show the output after the
4th elephant is entered.