-
코드 let input = Int(readLine()!)! for i in 1...input { for _ in 0...input - i { print("*", terminator: "") } print("") } https://www.acmicpc.net/problem/2440 2440번: 별 찍기 - 3 첫째 줄에는 별 N개, 둘째 줄에는 별 N-1개, ..., N번째 줄에는 별 1개를 찍는 문제 www.acmicpc.net