티스토리 뷰

Algorithm

swift 백준 10950

강경 2020. 12. 24. 15:05
728x90
반응형



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

 

728x90
반응형

'Algorithm' 카테고리의 다른 글

swift 백준 15552  (0) 2020.12.24
swift 백준 8393  (0) 2020.12.24
swift 백준 2739  (0) 2020.12.24
swift 백준 2884  (0) 2020.12.24
swift 백준 14681  (0) 2020.12.24