// Start comments with double slashes.
// Separate each item by a #
// Options for the types of entries can be found in DataInputModel
// html commands can be in all lower or all upper but not mixed case. All lower is more efficient
TITLE
Please answer the following questions.
If you do not know the answer, enter Don't Know.
Click on Done button when done.
#
TEXTAREA/6
Required
Write a do-while loop to read a value into the integer variable month.
It must ensure that the value read is in the range 1-12 (including 1 and 12).
Use the code stdin.readLine() to read input.
#
TEXTAREA/8
Required
Write nested for loops to print
1 through 31 (corresponding to days in a month)
12 times (for the 12 months in a year).