swift 백준 10950
let repeatNum = Int(readLine()!)! for _ in stride(from: 1, through: repeatNum, by: 1) { let numArr = readLine()!.split(separator: " ").map{ Int($0)! } print(numArr[0] + numArr[1]) } 입력받을 때 이상하게 받아서 런타임 에러가 났다 .. 😭 www.acmicpc.net/problem/10950 10950번: A+B - 3 두 정수 A와 B를 입력받은 다음, A+B를 출력하는 프로그램을 작성하시오. www.acmicpc.net
Algorithm
2020. 12. 24. 15:05
swift 백준 2739
let inputNum = Int(readLine()!)! for num in stride(from:1, through:9, by:1) { print("\(inputNum) * \(num) = \(inputNum * num)") } "for num in 1...9"이런식으로 쓸 수 도 있는거 stride함수 손에 익히려고 저렇게 쓰다가 단순오타로 한 번 틀렸다 .. 🤦🏻 www.acmicpc.net/problem/2739 2739번: 구구단 N을 입력받은 뒤, 구구단 N단을 출력하는 프로그램을 작성하시오. 출력 형식에 맞춰서 출력하면 된다. www.acmicpc.net
Algorithm
2020. 12. 24. 00:30