Java Taskbook Level 6.2
Print the name of tomorrow's day of the week.
Ask the user to enter a date in the format year-month-day. Check if the value entered is correct.
Ask the user to enter an integer via the console. Check if the value entered is correct.
Write a program that will generate the following string:
"12345 54321"
Given some array, for example, like this:
{1, 2, 3, 4, 5, 6}
Output to the console, one by one, the subarrays of two elements of our array:
{1, 2}
{3, 4}
{5, 6}