السلام عليكم ورحمة الله وبركاته
شباب اللي عندهحل واجب البرمجه هذا يعطيني اياه
والله يوفق الجميع
]
1. Declare a two-dimensional array of double with 12 rows and 30 columns
to store daily temperatures for one year. Using this data structure, write a
code fragment to find:
The hottest and coldest days of the year.
The average temperature of each month.
The difference between the hottest and coldest days of every month.
The temperature of any given day. The day is specified by two input
values: month (1, 2, ..., 12) and day (1, 2, ..., 30). Reject invalid input
values (e.g. 13 for month and 32 for day).