다이아몬드

less than 1 minute read

DESCRIPTION

다이아몬드의 크기 N을 입력으로 받아 출력하는 프로그램을 작성하세요.

Write a program that prompts the user to enter an integer N from 1 to 15 and displays a diamond.

INPUT

  • Line 1 : 다이아몬드의 크기 N (1~15)

OUTPUT

N크기의 다이아몬드

SAMPLE INPUT

5

SAMPLE OUTPUT

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

Categories: ,

Updated:

Comments