Problem E
Ultimate Binary Watch

The Ultimate Binary Watch is a maker project that uses small
LEDs to display time on a watch face. The display uses four
columns of four LEDs each, with each column representing one
digit of the current time in hours and minutes. Time is
displayed in
Write a program that will take a
Input
The input has a single line with
Output
Output four lines with a representation of the watch face
displaying the given time. The tens of hours shall be in the
Sample Input 1 | Sample Output 1 |
---|---|
1615 |
. . . . . * . * . * . . * . * * |
Sample Input 2 | Sample Output 2 |
---|---|
1900 |
. * . . . . . . . . . . * * . . |
Sample Input 3 | Sample Output 3 |
---|---|
0830 |
. * . . . . . . . . * . . . * . |