본문 바로가기

Algorithm/CodeUp

[CodeUp_Java] Q1357 : 삼각형 출력하기 4

반응형

안녕하세요! Plitche(플리체)입니다.
이번 포스팅의 주제는 Q1357 : 삼각형 출력하기 4 (자바, JAVA)입니다.

Intro

 

삼각형 출력하기 4

예시에 설명된 것과 같은 삼각형을 출력한다.

codeup.kr

 

 

GitHub - plitche/CodeUp_Solution: The solution of my code about CodeUp's quiz! [코드업]

:red_car: The solution of my code about CodeUp's quiz! [코드업] - GitHub - plitche/CodeUp_Solution: The solution of my code about CodeUp's quiz! [코드업]

github.com

 

Question

문제 설명

입력

n이 입력된다.

출력

예시에 설명된 것과 같은 삼각형을 출력한다.

예시

  • 입력 : 2
  • 출력 :
    *
    **
    *

Solution (풀이)

  • 풀이 : 메모리 11788, 시간 68
public class Answer1 {
    public static void main(String[] args) throws IOException {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        StringBuilder sb = new StringBuilder();

        int n = Integer.parseInt(br.readLine());

        // 입력받은 길이만큼 2중 for문 반복
        for(int i=0; i<n; i++) {
            for (int j=0; j<i+1; j++) {
                sb.append("*");
            }
            sb.append("\n");
        }

        // 입력받은 길이-1만큼 2중 for문 반복
        for(int i=1; i<n; i++) {
            for (int j=n-i; j>0; j--) {
                sb.append("*");
            }
            sb.append("\n");
        }

        System.out.println(sb);
        br.close();
    }
}

Ranking(순위)

반응형