전체 글 (165) 썸네일형 리스트형 [Day2-1] 덧셈식 출력하기 문제 내 정답 코드 import Foundation let n = readLine()!.components(separatedBy: " ").map { Int($0)! } let (a, b) = (n[0], n[1]) print("\(a) + \(b) = \(a+b)") # 입력받은 두 수를 출력해준다. 배운 기술 - [Day1-5] 특수문자 출력하기 문제 내 정답 코드 import Foundation print(#"!@#$%^&*(\'"?:;"#) # string값 양 옆에 #을 추가하여 그래로 출력한다. string값 내에서 문제가 되는 특수문자 앞에 \를 붙여주는 방법도 있다. import Foundation print("!@#$%^&*(\\'\"?:;") 배운 기술 - [Day2-4] 홀짝 구분하기 문제 내 정답 코드 import Foundation let a = Int(readLine()!)! var num: String = a % 2 == 0 ? "\(a) is even" : "\(a) is odd" print(num) # 2로 나눈 나머지 값으로 짝, 홀을 구분하고 삼항 연산자를 통해 string값을 저장해주었다. 배운 기술 1. 삼항 연산자 https://developer.apple.com/documentation/swift/operator-declarations Operator Declarations | Apple Developer Documentation Work with prefix, postfix, and infix operators. developer.apple.com 이전 1 ··· 51 52 53 54 55 다음