Notice
Recent Posts
Recent Comments
Link
투케이2K
40. (swift/xcode) String format 사용해 소수점 자릿수 제한 출력 실시 - %f 본문
[개발 환경 설정]
개발 툴 : XCODE
개발 언어 : SWIFT
[소스 코드]
func testMain(){
print("")
print("===============================")
print("[ViewController >> testMain() :: 메인 함수 수행 실시]")
print("===============================")
print("")
// [초기 변수 선언 실시]
let douData = 123.4567
// [string format 을 사용해서 소수점 제한 출력 실시]
let one = String(format: "%.1f", douData) // 소수점 이하 1자리
let two = String(format: "%.2f", douData) // 소수점 이하 2자리
// [결과 출력 실시]
print("")
print("===============================")
print("one :: ", one)
print("two :: ", two)
print("===============================")
print("")
}
[결과 출력]
반응형
'Swift' 카테고리의 다른 글
42. (swift/xcode) charAt 방법을 사용해 문자열 한글자씩 출력 실시 - substring , NSMakeRange (0) | 2022.02.24 |
---|---|
41. (swift/xcode) array dictionary 배열 딕셔너리 형태로 저장된 데이터 특정 key 값 기준으로 정렬 실시 (0) | 2022.02.24 |
39. (swift/xcode) 대문자 , 소문자 데이터 출력 실시 - uppercased , lowercased (0) | 2022.02.19 |
38. (swift/xcode) 삼항식 사용해서 두개 변수 중 더 큰수 출력 실시 (0) | 2022.02.19 |
37. (swift/xcode) url 인코딩 (encode) , 디코딩 (decode) 수행 실시 (0) | 2022.02.18 |
Comments