"BOJ 2439 별 찍기 - 2"의 두 판 사이의 차이

잔글 (Jmnote님이 BOJ 2439번. 별찍기 - 2 문서를 BOJ 2439 별찍기 - 2 문서로 이동했습니다)
1번째 줄: 1번째 줄:
[[분류: BOJ 3단계]]
[[분류: BOJ 3단계]]
[[분류: BOJ 출력]]
==개요==
==개요==
* {{BOJ|2439}}
* {{BOJ|2439}}
* 알고리즘 분류: 출력


==Java==
==Java==

2018년 7월 17일 (화) 16:42 판

1 개요

BOJ 2439 별 찍기 - 2

[[분류:BOJ {{{단계}}}단계]]

  • 알고리즘 분류: 출력

2 Java

import java.util.*;
public class Main {
    public static void main(String args[]) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        for(int i=1; i<=n; i++) {
            for(int j=1; j<=n; j++) {
                if( j>n-i ) System.out.print("*");
                else System.out.print(" ");
            }
            System.out.print("\n");
        }
    }
}
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}