[Java] 백준 - 2439번 : 별 찍기 2 (Bronze IV)

배똥회장·2022년 8월 16일
0
post-thumbnail
post-custom-banner

📝 문제

백준 - 2439번 : 별 찍기 2


📝 답안

📌 작성 코드

import java.io.*;
public class Main {
	public static void main(String[] args) throws IOException{
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        
        //숫자 가져오기
		int n = Integer.parseInt(br.readLine());
		
        //1부터 n번째 줄까지 줄 기준 for문
		for (int i = 1; i <= n; i++) {
        	//줄에 맞춰서 * 작성하는 for문
			for (int j = 1; j <= n; j++) {
            	//오른쪽 정렬을 위해 만약 n-j가 i보다 작을 경우 *, 아니면 띄어쓰기 입력
                //System.out.print는 줄 바꿈 안함
				if (n-j < i) System.out.print("*"); else System.out.print(" ");
			}
            //System.out.println은 줄 바꿈
			System.out.println("");
		}
	}
}

📌 결과


profile
어쩌면 개발자
post-custom-banner

0개의 댓글