알고리즘
[백준 2739][Swift] 구구단
moving
2022. 4. 1. 10:27
728x90
코드
let input = Int(readLine()!)!
for i in 1...9 {
print("\(input) * \(i) = \(input * i)")
}
https://www.acmicpc.net/problem/2739