[백준/코틀린] 2438번: 별 찍기 - 1브론즈 5 Posted 2025-09-13 By Jaeguk Cho views 1 min read링크2438번: 별 찍기 - 1풀이생략코드 1 2 3 4 5 6 7 8 fun main() { val n = readln().toInt() (1..n).forEach { println("*".repeat(it)) } } 백준, CLASS 1 Kotlin This post is licensed under CC BY 4.0 by the author. Share