직각삼각형 출력하기 Lv. 0

박영준·2023년 4월 21일
0

코딩테스트

목록 보기
56/300

문제 설명

""의 높이와 너비를 1이라고 했을 때, ""을 이용해 직각 이등변 삼각형을 그리려고합니다. 정수 n 이 주어지면 높이와 너비가 n 인 직각 이등변 삼각형을 출력하도록 코드를 작성해보세요.

import java.util.Scanner;

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

        System.out.println(n);
    }
}

제한 사항

  • 1 ≤ n ≤ 10

입출력 예

입출력 예 설명

  • 입출력 예 #1
    • n이 3이므로 첫째 줄에 1개, 둘째 줄에 2개, 셋째 줄에 * 3개를 출력합니다.

해결법

방법 1

import java.util.Scanner;

public class Solution {
    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("*");
            }
            
            System.out.println();
        }
    }
}

방법 2

import java.util.Scanner;

public class Solution {
    public static void main(String[] args) {
        
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        String str = "*";
        
        for(int i = 0; i < n; i++) {
            for(int j = 0; j <= i; j++) {
                System.out.print(x);
            }
            
            System.out.println();
        }
    }
}
  • " * " 을 따로 선언해줘도 무방하다.

직각삼각형 출력하기
참고: Scanner 클래스

profile
개발자로 거듭나기!

0개의 댓글