Declare an array of integers, westboundHollandTunnelTraffic that can store the number of vehicles going westbound through the Holland Tunnel on a particular hour (numbered 0 through 23) on a particular day (numbered 0 through 6) on a particular week numbered (0 through 51) over the last ten years (numbered 0 through 9). The innermost dimension should be years, with the next being weeks, and so on.

Respuesta :

Limosa

Answer:

Following code are int westboundHollandTunnelTraffic[10][52][7][24];

Explanation:

Here, we are defined as an integer data type array "westboundHollandTunnelTraffic" which stores the particular hour the vehicles can travel at Westbound by Holland tunnel, on the particular day vehicles travels, on the particular week vehicles can travel and last ten years the vehicles can travel.

So, the following integer variable stores the information of the numbers of vehicles can travel at what hour, day, week, and year.

ACCESS MORE