직각삼각형 별표 출력

Mixer·2023년 12월 4일
0
import java.util.Scanner;

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

        // 변수 선언 및 입력
        int n = sc.nextInt();

        // n * n 크기의 별을 출력합니다.
        for(int i = 0; i < n; i++) {
            for(int j = 0; j < n - i; j++) {
                System.out.print("* ");
            }
            System.out.println();
        }
    }
}
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 = n ; j >= i; j--) {
                System.out.print("* ");
            }
            System.out.println();
        }
    }
}
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 = n ; j >= i; j--) {
                System.out.print("* ");
            }
            System.out.println();
        }
         for(int i = 2; i <= n; i++) {
            for(int j = 0; j < i ;j++) {
                System.out.print("* ");
            }
            System.out.println();
    }
}

}

출력

* * * * * 
* * * * 
* * * 
* * 
* 
* * 
* * * 
* * * * 
* * * * * 
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 =0; i < n; i++){
            for(int j = 0; j <i; j++) {
                System.out.print("  ");
            }
            for(int j = 0; j < (2 * n) - (2 * i) -1; j++) {
                System.out.print("* ");
            }
            System.out.println();
        }
    }
}

출력

* * * * * * * * * 
  * * * * * * * 
    * * * * * 
      * * * 
        * 
profile
Minthug'life

0개의 댓글