Skip to content

Latest commit

 

History

History
35 lines (28 loc) · 730 Bytes

File metadata and controls

35 lines (28 loc) · 730 Bytes

Back

P1.6

Write a program that prints your name in large letters, such as

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

Solution:

import static java.lang.System.out;

class P0106 
{
  public static void main(String[] args) 
  {
    out.println("       *    *   *     * ");
    out.println("       *   * *   *   *  ");
    out.println("       *  *   *   * *   ");
    out.println("       * *     *   *    ");
    out.println(" *     * *******   *    ");
    out.println(" *     * *     *   *    ");
    out.println("  *****  *     *   *    ");
  }
}