Top-Down Design of a Program – team Following the process described in the lecture, as a team perform a top-down design for the program described below. AFTER you plan your program, write the code. Write a program to take as input from the user a time and display that time using ASCII art. Format your output using the example shown below. Draw each digit 3 characters wide and 5 characters tall, using only spaces and that digit.
Draw one space between numbers. Draw the colon 1 character wide. You do
NOT need a leading zero or blank space for times earlier than noon.
Example output (using input 12:56):
Enter the time: 12:56
1 222 555 666
11 2 : 5 6
1 222 555 666
1 2 : 5 6 6
111 222 555 666
Example output (using input 1:02):
Enter the time: 1:02
1 000 222
11 : 0 0 2
1 0 0 222
1 : 0 0 2
111 000 222