-
[백준 1000][Swift] 두 정수 A와 B를 입력받은 다음, A+B를 출력알고리즘 2022. 3. 31. 10:37728x90
코드
import Foundation let input = readLine()?.components(separatedBy: " ") if let a = Int(input?.first ?? "0"), let b = Int(input?.last ?? "0") { print(a + b) }
혹은
let input = readLine()?.split(separator: " ") let first = Int(input?.first ?? "0")! let second = Int(input?.last ?? "0")! print(first + second)
https://www.acmicpc.net/problem/1000
'알고리즘' 카테고리의 다른 글
[백준 10953][Swift] 두 정수 A와 B를 입력받은 다음, A+B를 출력 -6 (0) 2022.03.31 [백준 10952][Swift] 두 정수 A와 B를 입력받은 다음, A+B를 출력 -5 (0) 2022.03.31 [백준 10951][Swift] 두 정수 A와 B를 입력받은 다음, A+B를 출력 -4 (0) 2022.03.31 [백준 2558][Swift] 두 정수 A와 B를 입력받은 다음, A+B를 출력 - 2 (0) 2022.03.31 [백준 2557][Swift] Hello World 출력하기 (0) 2022.03.31