[BOJ 6916] 0123456789

View as PDF

Submit solution

Points: 1
Time limit: 1.0s
Memory limit: 128M

Problem type
Allowed languages
Assembly, Awk, C, C++, Java, Pascal, Perl, Python, Sed, Text


| | | _| _| |_| |_ |_ | |_| |_| |_| | |_ _| | _| |_| | |_| _|</pre>

Most digital devices show numbers using a seven segment display. The seven segments are arranged as shown:</p>

                  
   
     
     
     
   *

For this problem, each segment is represented by three asterisks in a line as shown above.

Any digit from 0 - 9 can be shown by illuminating the appropriate segments. For example, the digit 1 may be displayed using the two segments on the right side:

      
      
      

      
      
      

The digit 4 needs four segments to display it properly:

     
     
     
   
      
      
      

Write a program that will accept a single digit input from the user, and then display that digit using a seven segment display. You may assume that each segment is composed of three asterisks.

BOJ-specific note: None of your lines should contain any trailing whitespace. The last line must end with a newline.

입력 형식

출력 형식

예제 입력

9

예제 출력

* * *
*     *
*     *
*     *
 * * *
      *
      *
      *
 * * *

Comments

There are no comments at the moment.