MelonPeach

import java.util.Scanner;

public class PromotionExam02 {
	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);

		int a = s.nextInt();

		for (int i = 1; i <= a; i++) {

			System.out.println(" ".repeat(a-i) + "*".repeat(i)+"*".repeat(i-1));
		}
		s.close();
	}
}

 

문제 : 첫째 줄에는 별 1개, 둘째 줄에는 별 3개, ..., N번째 줄에는 별 2×N-1개를 찍는 문제

별은 가운데를 기준으로 대칭이어야 한다.

 

입력값 : 5

출력

    *

   ***

  *****

 *******

********* 

이 글을 공유합시다

facebook twitter googleplus kakaostory naver