프로그래머스(Level 0) - 🔼 직각삼각형 출력하기

Gammi·2023년 1월 13일
0

프로그래머스

목록 보기
23/69

✔ 문제






✔ 해결


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 = "*";
    String star = "*";
    for(int i = 0; i < n; i++) {
      System.out.println(str);
      str = str.concat(star);
    }
  }
}





🔗 보충

concat() 메서드

  • 문자열을 더한 것과 같은 값이 출력된다
profile
개발자가 되었어요⭐️

0개의 댓글