본문 바로가기
2022_iOS 앱 개발자 워크숍/1, Swift 문법 복습

Swift : 소수점 원하는 만큼 출력하는 방법

by 황민우 2022. 1. 5.

두 가지만 입력하면 된다!

1, import Foundation

2, 출력시 String(format: "%.nf", (변수이름)

   - n 자리에는 원하는 소수점 자릿수를 입력하면된다.

import Foundation
func calculator(x: Int, y: Int) -> Double {
    let D = Double(x)/Double(y)
    return D
}
var myTuple = calculator(x:2, y:3)
print(myTuple)
print(String(format: "%.5f",(myTuple)))

실행결과
// 0.6666666666666666
// 0.66667

 


강의 출처 : https://www.youtube.com/channel/UCM8wseo6DkA-D7yGlCrcrwA

댓글