Codigo

Boa tarde à todos… sou novo neste imenso mundo Java… e acabei meu primerio curso… com isso a empresa que eu trabalho me passou uma pequena tarefa para eu fazer, para vim somar mais conhecimento… mais nao sei como imprimir estes caracteres na tela… se alguem poder me ajudar, ficaria muito agradecido… A tarefa esta abaixo, preciso somente saber como imprimo este tipo de caracter… abraços a todos e já agradeço a atenção!

A friend of yours has just bought a new computer. Before this, the most powerful machine he ever used was a pocket calculator. He is a little disappointed because he liked the LCD display of his calculator more than the screen on his new computer! To make him happy, write a program that prints numbers in LCD display style.

INPUT
The input file contains several lines, one for each number to be displayed. Each line contains integers s and n, where n is the number to be displayed (0 ≤ n ≤ 99, 999, 999) and s is the size in which it shall be displayed (1 ≤ s ≤ 10). The input will be terminated by a line containing two zeros, which should not be processed.

OUTPUT
Print the numbers specified in the input file in an LCD display-style using s ?-? signs for the horizontal segments and s ?|? signs for the vertical ones. Each digit occupies exactly s + 2 columns and 2s + 3 rows. Be sure to fill all the white space occupied by the digits with blanks, including the last digit. There must be exactly one column of blanks between two digits.
Output a blank line after each number. You will find an example of each digit in the sample output below.

SAMPLE INPUT
2 12345
3 67890
0 0

Observem que a primeira linha da entrada, o tamanho é 2, ou seja, os números são feitos com 2 traços na horizontal e 2 na vertical. Na segunda linha o tamanho é 3, ou seja 3 traços na horizontal e 3 na vertical.
Obs: O desenho saiu um pouco ruim, mas o primerio desenho é 12345 e o segundo é 67890 em digitos.

Atenciosamente,

Mineiro27

Para imprimir caracteres use o método System.out.println.

Isso inclui qualquer um desses aí:

System.out.println("__________"); System.out.println(" |"); System.out.println(" |"); System.out.println("__________"); System.out.println("|"); System.out.println("|"); System.out.println("|"); System.out.println("__________");