일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- java
- 네이버구름
- 맥용
- codility
- 아이폰
- 네이버
- 알고리즘
- iPhone
- 아이폰 해상도
- 코딩테스트
- android
- 구름알고리즘
- 아이폰 비율
- Cordova
- codemonkey
- goormtest
- Swift
- 헬스
- 코딩
- 맥북
- code
- ios
- naver
- error
- Object-c
- algorism
- 구름TEST
- 네이버알고리즘
- 안드로이드
- objective-c
Archives
- Today
- Total
그래오늘은이거야
float 소수점 자르기 함수 본문
728x90
반응형
소수점을 반올림하는 방법 입니다.
float myFloat = 3.333
소수점(.) 이후로 넘어가면 무조건 반올림을 합니다.
// for nearest integer rounded up (3.333 -> 4):
int result = (int)ceilf(myFloat );
소수점(.5) 이후로 넘어가면 무조건 반올림을 합니다.
// for nearest integer (3.4999 -> 3, 3.5 -> 4):
int result = (int)roundf(myFloat );
소수점(.) 이후로 넘어가도 반올림 하지 않습니다.
// for nearest integer rounded down (3.999 -> 3):
int result = (int)floor(myFloat);
// For just an integer value (for which you don't care about accuracy)
int result = (int)myFloat;
my friend is stackoverflow
http://stackoverflow.com/questions/8785468/convert-float-to-int-in-objective-c
반응형
'세상 개발 > IOS(Objective-c)' 카테고리의 다른 글
Cordova IOS object-c node cordova/lib/copy-www-build-step.js build error (에러 및 오류 ) (0) | 2019.12.04 |
---|---|
object-c(IOS) 1. In file included from 오류 및 에러 (0) | 2019.11.14 |
object c(IOS) DerivedData / has been modified since the precompiled header (0) | 2019.11.13 |
[맥북/맥용]'Cordova/CDVViewController.h' file not found 오류 찾을 수 없을때 (0) | 2019.11.08 |
Object C AFNetworking Async - Sync 모드로 변경할때 (0) | 2018.02.13 |
Comments